More theming
This commit is contained in:
@@ -68,6 +68,11 @@ ln -sf /usr/share/themes/Orchis-Dark-Compact/gtk-4.0/gtk.css ~/.config/gtk-4.0/g
|
|||||||
ln -sf /usr/share/themes/Orchis-Dark-Compact/gtk-4.0/assets ~/.config/gtk-4.0/assets
|
ln -sf /usr/share/themes/Orchis-Dark-Compact/gtk-4.0/assets ~/.config/gtk-4.0/assets
|
||||||
```
|
```
|
||||||
|
|
||||||
|
`nwg-look` can do the symlink step for you — `nwg/.config/nwg-look/config` already
|
||||||
|
has `export-gtk4-symlinks: true`. Set the gsettings values above first, then run
|
||||||
|
`nwg-look` and hit Apply; it writes `.gtkrc-2.0`, both `settings.ini` files and the
|
||||||
|
GTK4 symlinks from those values.
|
||||||
|
|
||||||
### Window buttons
|
### Window buttons
|
||||||
|
|
||||||
Both `settings.ini` files set `gtk-decoration-layout=close,minimize,maximize:`
|
Both `settings.ini` files set `gtk-decoration-layout=close,minimize,maximize:`
|
||||||
|
|||||||
@@ -95,7 +95,8 @@
|
|||||||
frame_width = 2
|
frame_width = 2
|
||||||
|
|
||||||
# Defines color of the frame around the notification window.
|
# Defines color of the frame around the notification window.
|
||||||
frame_color = "#A7C080"
|
# Cursor Dark: neutral by default, overridden per urgency below.
|
||||||
|
frame_color = "#2b2b2b"
|
||||||
|
|
||||||
# Size of gap to display between notifications - requires a compositor.
|
# Size of gap to display between notifications - requires a compositor.
|
||||||
# If value is greater than 0, separator_height will be ignored and a border
|
# If value is greater than 0, separator_height will be ignored and a border
|
||||||
@@ -313,23 +314,27 @@
|
|||||||
[urgency_low]
|
[urgency_low]
|
||||||
# IMPORTANT: colors have to be defined in quotation marks.
|
# IMPORTANT: colors have to be defined in quotation marks.
|
||||||
# Otherwise the "#" and following would be interpreted as a comment.
|
# Otherwise the "#" and following would be interpreted as a comment.
|
||||||
background = "#2E383C"
|
background = "#181818"
|
||||||
foreground = "#D3C6AA"
|
foreground = "#9d9d9d"
|
||||||
|
frame_color = "#2b2b2b"
|
||||||
timeout = 10
|
timeout = 10
|
||||||
# Icon for notifications with low urgency, uncomment to enable
|
# Icon for notifications with low urgency, uncomment to enable
|
||||||
#icon = /path/to/icon
|
#icon = /path/to/icon
|
||||||
|
|
||||||
[urgency_normal]
|
[urgency_normal]
|
||||||
background = "#2E383C"
|
background = "#181818"
|
||||||
foreground = "#D3C6AA"
|
foreground = "#cccccc"
|
||||||
|
frame_color = "#2472c8"
|
||||||
timeout = 10
|
timeout = 10
|
||||||
# Icon for notifications with normal urgency, uncomment to enable
|
# Icon for notifications with normal urgency, uncomment to enable
|
||||||
#icon = /path/to/icon
|
#icon = /path/to/icon
|
||||||
|
|
||||||
[urgency_critical]
|
[urgency_critical]
|
||||||
background = "#900000"
|
# #5a1d1d is VS Code's error-validation background, so it stays in-family
|
||||||
|
# while still reading as alarming.
|
||||||
|
background = "#5a1d1d"
|
||||||
foreground = "#ffffff"
|
foreground = "#ffffff"
|
||||||
frame_color = "#ff0000"
|
frame_color = "#f14c4c"
|
||||||
timeout = 0
|
timeout = 0
|
||||||
# Icon for notifications with critical urgency, uncomment to enable
|
# Icon for notifications with critical urgency, uncomment to enable
|
||||||
#icon = /path/to/icon
|
#icon = /path/to/icon
|
||||||
|
|||||||
@@ -8,12 +8,13 @@ window {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Inner bar container, surrounds buttons */
|
/* Inner bar container, surrounds buttons */
|
||||||
|
/* Cursor Dark: #181818 panel, #cccccc outline */
|
||||||
#inner-box {
|
#inner-box {
|
||||||
background-color: rgba (59, 66, 82, 1);
|
background-color: rgba (24, 24, 24, 1);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 2px;
|
border-width: 2px;
|
||||||
border-color: rgba (216, 222, 233, 0.7);
|
border-color: rgba (204, 204, 204, 0.7);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 10px
|
margin: 10px
|
||||||
}
|
}
|
||||||
@@ -31,5 +32,5 @@ button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
button:hover {
|
button:hover {
|
||||||
background-color: rgba (216, 222, 233, 0.1)
|
background-color: rgba (204, 204, 204, 0.1)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user