dotfiles/sway/config.d/ui.config

32 lines
1.0 KiB
Plaintext

################################################################################
# UI tweaks
set $focus_bg #12e689
set $urgent_bg #ff4551
set $inactive_bg #161720
set $light_fg #1f212e
set $dark_fg #aab5c6
### Font stuff
font pango:FiraCode Nerd Font 10
### Gaps
gaps inner 5
gaps outer 2
### Colors
# class border backgr text indicator child_border
client.focused $focus_bg $focus_bg $light_fg $focus_bg $focus_bg
client.focused_inactive $inactive_bg $inactive_bg $dark_fg $inactive_bg $inactive_bg
client.unfocused $inactive_bg $inactive_bg $dark_fg $inactive_bg $inactive_bg
client.urgent $urgent_bg $urgent_bg $light_fg $urgent_bg $urgent_bg
# GTK 3 settings
# See https://github.com/swaywm/sway/wiki/GTK-3-settings-on-Wayland for more info.
exec_always scripts/import-gsettings \
gtk-theme:gtk-theme-name \
icon-theme:gtk-icon-theme-name \
cursor-theme:gtk-cursor-theme-name
# vim: ft=cfg