diff options
| author | Robert Günzler <r@gnzler.io> | 2023-01-19 18:45:46 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2023-03-21 12:35:42 +0100 |
| commit | 75d666322acfb6d8a58cbb4bf6a95782fe14b124 (patch) | |
| tree | c2df99bc6372b7ba28558261911336e4e797ebdf /.config/sway/config.d/colors.conf | |
| parent | 3d594f8a0da0e4e297df7ea1652048a80f7c8a96 (diff) | |
sway: make most of config auto-loading
Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to '.config/sway/config.d/colors.conf')
| -rw-r--r-- | .config/sway/config.d/colors.conf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.config/sway/config.d/colors.conf b/.config/sway/config.d/colors.conf new file mode 100644 index 0000000..498a50c --- /dev/null +++ b/.config/sway/config.d/colors.conf @@ -0,0 +1,18 @@ + +set $text #fffffb +set $text2 #bdc0ba +set $bg #1c1c1c +set $bg2 #bdc0ba +set $main #8a6bbe +set $main2 #70649a +set $urgent #cb1b45 +set $urgent2 #db4d6d +set $indicator_focused #fad689 +set $indicator_unfocused $bg + +client.focused $main $main $text $indicator_focused $main +#client.focused_inactive $bg $bg $text2 $indicator_unfocused $bg +client.focused_inactive $main2 $main2 $text2 $indicator_unfocused $main2 +client.unfocused $bg $bg $text2 $indicator_unfocused $bg +#client.unfocused $main2 $main2 $text2 $indicator_unfocused $main2 +client.urgent $urgent2 $urgent $text $indicator_focused $urgent |