diff options
Diffstat (limited to 'dot_config/sway')
| -rw-r--r-- | dot_config/sway/executable_bt-toggle.sh | 12 | ||||
| -rw-r--r-- | dot_config/sway/executable_tb-autostart.sh | 10 | ||||
| -rw-r--r-- | dot_config/sway/executable_tb-toggle.sh | 18 |
3 files changed, 20 insertions, 20 deletions
diff --git a/dot_config/sway/executable_bt-toggle.sh b/dot_config/sway/executable_bt-toggle.sh index 95958f9..02b72f9 100644 --- a/dot_config/sway/executable_bt-toggle.sh +++ b/dot_config/sway/executable_bt-toggle.sh @@ -6,11 +6,11 @@ set -eu state=$(bluetoothctl show | awk '/Powered:/ {print $2}') if [ "$state" = "yes" ]; then - bluetoothctl power off >/dev/null - notify-send -t 1500 -h string:x-canonical-private-synchronous:bt \ - 'Bluetooth' 'off' + bluetoothctl power off >/dev/null + notify-send -t 1500 -h string:x-canonical-private-synchronous:bt \ + 'Bluetooth' 'off' else - bluetoothctl power on >/dev/null - notify-send -t 1500 -h string:x-canonical-private-synchronous:bt \ - 'Bluetooth' 'on' + bluetoothctl power on >/dev/null + notify-send -t 1500 -h string:x-canonical-private-synchronous:bt \ + 'Bluetooth' 'on' fi diff --git a/dot_config/sway/executable_tb-autostart.sh b/dot_config/sway/executable_tb-autostart.sh index b77431e..f841428 100644 --- a/dot_config/sway/executable_tb-autostart.sh +++ b/dot_config/sway/executable_tb-autostart.sh @@ -11,11 +11,11 @@ MARK=tb-main thunderbird & for _ in $(seq 1 200); do - if swaymsg -t get_tree | jq -e --arg m "$MARK" ' + if swaymsg -t get_tree | jq -e --arg m "$MARK" ' [.. | objects | select(.marks? // [] | index($m))] | length > 0 ' >/dev/null 2>&1; then - swaymsg "[con_mark=\"$MARK\"] move container to scratchpad" >/dev/null - exit 0 - fi - sleep 0.1 + swaymsg "[con_mark=\"$MARK\"] move container to scratchpad" >/dev/null + exit 0 + fi + sleep 0.1 done diff --git a/dot_config/sway/executable_tb-toggle.sh b/dot_config/sway/executable_tb-toggle.sh index 8fc39c0..77a3307 100644 --- a/dot_config/sway/executable_tb-toggle.sh +++ b/dot_config/sway/executable_tb-toggle.sh @@ -18,17 +18,17 @@ tb_ws=$(swaymsg -t get_tree | jq -r --arg m "$MARK" ' ) // empty') if [ -z "$tb_ws" ]; then - exec thunderbird + exec thunderbird fi if [ "$tb_ws" = "__i3_scratch" ]; then - # scratchpad show reveals it as floating; floating disable tiles it on the - # current workspace. - swaymsg "[con_mark=\"$MARK\"] scratchpad show, floating disable" >/dev/null + # scratchpad show reveals it as floating; floating disable tiles it on the + # current workspace. + swaymsg "[con_mark=\"$MARK\"] scratchpad show, floating disable" >/dev/null else - # Criteria-based move can cause sway to follow focus to the originating - # workspace. Pin focus back to where we started. - current_ws=$(swaymsg -t get_workspaces | jq -r '.[] | select(.focused) | .name') - swaymsg "[con_mark=\"$MARK\"] move container to scratchpad" >/dev/null - swaymsg "workspace \"$current_ws\"" >/dev/null + # Criteria-based move can cause sway to follow focus to the originating + # workspace. Pin focus back to where we started. + current_ws=$(swaymsg -t get_workspaces | jq -r '.[] | select(.focused) | .name') + swaymsg "[con_mark=\"$MARK\"] move container to scratchpad" >/dev/null + swaymsg "workspace \"$current_ws\"" >/dev/null fi |
