.dotfiles/configs/sway/toggle_gaps.sh

17 lines
411 B
Bash
Raw Normal View History

2021-11-24 14:29:06 +01:00
#!/bin/bash
2021-11-26 16:40:32 +01:00
GAPS=3
# How to get the current inner border from swaymsg
#$ echo $(swaymsg -t get_config | jq ".config") | sed -n '/gaps\ inner/p' | sed 's/gaps\ inner//g' | xargs
2021-11-24 14:29:06 +01:00
if [ "$(pgrep waybar)" != "" ]; then
killall waybar;
swaymsg gaps outer all set 0;
swaymsg gaps inner all set 0;
else
2021-11-26 16:40:32 +01:00
swaymsg gaps outer all set $GAPS;
swaymsg gaps inner all set $GAPS;
2021-11-24 14:29:06 +01:00
nohup waybar & 2&> /dev/null;
fi