diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2024-12-22 09:31:03 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2024-12-22 09:31:03 +0100 |
commit | 23d3e18cfb01e7c3e4b4d144989590ac21773781 (patch) | |
tree | 01276eb309c6b62b5e4a04e8d9c1c69a558135a9 /bspwm/scripts | |
parent | db0c5bfdc22474c5c5011796ac45c72098844972 (diff) |
Updated the rules assign a desktop for a application
Diffstat (limited to 'bspwm/scripts')
-rwxr-xr-x | bspwm/scripts/bspwm/desktops.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bspwm/scripts/bspwm/desktops.sh b/bspwm/scripts/bspwm/desktops.sh index d63b0aa..e94c084 100755 --- a/bspwm/scripts/bspwm/desktops.sh +++ b/bspwm/scripts/bspwm/desktops.sh @@ -10,7 +10,7 @@ run_desktop() { application=$2 window_name=$3 bspc node @$name:/ -i - gspc rule --add $window_name --one-shot node=@$name:/ + bspc rule --add $window_name --one-shot node=@$name:/ follow=off focus=off $application & } @@ -42,7 +42,7 @@ bspc subscribe desktop | while read -r event monitor_id desktop_id name; do run_desktop $name firefox-esr firefox-esr ;; Mail) - run_desktop $name thunderbird thunderbird + run_desktop $name thunderbird thunderbird-default ;; Discord) run_desktop $name discord discord |