diff options
| author | Robert Günzler <r@gnzler.io> | 2021-02-22 14:08:27 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-04-26 02:09:44 +0200 |
| commit | 3719d8bd4db5eb823455c44deef84ca52dd486cb (patch) | |
| tree | 1e5d9fbddda901f6b2d311e638f90912a108ca7b /.config/sway/config | |
| parent | 1996ef15613f2d4773017128bba1a719a1b63a19 (diff) | |
sway: update
* use 'once' * themeing
Diffstat (limited to '.config/sway/config')
| -rw-r--r-- | .config/sway/config | 57 |
1 files changed, 25 insertions, 32 deletions
diff --git a/.config/sway/config b/.config/sway/config index c5b46dd..a6d4521 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -4,20 +4,16 @@ output * scale 1 output * max_render_time 1 output * adaptive_sync on -# exec_always sh -c 'killall oguri; exec oguri;' -exec oguri -# exec_always sh -c 'killall kanshi; exec kanshi;' -exec kanshi -# exec_always sh -c 'killall waybar; exec waybar;' -exec waybar - -#exec doas rc sway - exec light -S 80 -exec redshift -exec pipewire -exec mako -exec swayidle -w \ + +exec dbus-update-activation-environment --all +exec once oguri +exec once kanshi +exec once waybar +exec once gammastep +exec once pipewire +exec once mako +exec once swayidle -w \ timeout 540 'lock' \ timeout 800 'swaymsg output \* dpms off' \ resume 'swaymsg output \* dpms on' \ @@ -81,27 +77,24 @@ set $fat_bpix 5 default_border pixel $bpix default_floating_border pixel $fat_bpix -set $text #FCFAF2 -set $text2 #BDC0BA +set $text #fffffb +set $text2 #bdc0ba set $bg #1C1C1C -set $bg2 #434343 +set $bg2 #292929 set $main #4e4371 -set $main2 #3e355a - -set $urgent #DB4D6D -set $urgent2 #CB1B45 -# set $indicator #FAD689 -# set $indicator2 #C18A26 - -# set $indicator #434343 -# set $indicator2 #434343 -set $indicator $bg -set $indicator2 $bg - -client.focused $main2 $main $text $indicator $main -client.focused_inactive $bg2 $bg $text2 $indicator2 $bg -client.unfocused $bg2 $bg $text2 $indicator2 $bg -client.urgent $urgent2 $urgent $text $indicator $urgent +set $main2 #2e2843 + +set $urgent #9f353a +set $urgent2 #662225 +# set $indicator $bg +# set $indicator2 $bg +set $indicator_focused $bg2 +set $indicator_unfocused $bg + +client.focused $main $main2 $text $indicator_focused $main +client.focused_inactive $bg $bg $text2 $indicator_unfocused $bg +client.unfocused $bg2 $bg $text2 $indicator_unfocused $bg +client.urgent $urgent2 $urgent $text $indicator_focused $urgent # }}} # include config.d/* |