diff options
| author | Robert Günzler <r@gnzler.io> | 2020-12-03 13:29:48 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2020-12-07 19:28:05 +0100 |
| commit | 8d1604a2a0dac388652c1c3822fc6be1361d0f71 (patch) | |
| tree | 198c4cb5f2344be37866024b0a9fdec8f36185cf /.config/sway/config | |
| parent | 8ad54d1946fcadd548dd7c71bef5555561542ddc (diff) | |
sway: set default border to pixel and define floating sizes
Diffstat (limited to '.config/sway/config')
| -rw-r--r-- | .config/sway/config | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/.config/sway/config b/.config/sway/config index bceb81b..6d4c0a6 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -42,10 +42,6 @@ set $floating_term $term --config-file $HOME/.config/alacritty/launcher.yml --cl set $menu menu -drun # set $menu wofi -k /dev/null --terminal $term --show drun set $run_menu menu -run - -set $bpix 3 -default_border pixel $bpix -default_floating_border pixel $bpix set $firefox nightly # workspaces {{{ @@ -66,6 +62,8 @@ set $wsGame g # gaps inner 5 show_marks yes +floating_maximum_size 0 x 0 +floating_minimum_size 75 x 50 include input.conf include binds.conf @@ -74,6 +72,11 @@ include auto.conf # style {{{ font pango:Iosevka Sparkle 12 +set $bpix 3 +set $fat_bpix 5 +default_border pixel $bpix +default_floating_border pixel $fat_bpix + set $text #FCFAF2 set $text2 #BDC0BA set $bg #1C1C1C @@ -84,8 +87,11 @@ set $urgent #DB4D6D set $urgent2 #CB1B45 # set $indicator #FAD689 # set $indicator2 #C18A26 -set $indicator #434343 -set $indicator2 #434343 + +# 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 |