diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-19 14:15:17 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-19 14:15:17 +0200 |
commit | e73f207288934251196a5a3250bf08e085197721 (patch) | |
tree | a0b2f83f3b876af1d72bf04e10082bf317cf7bf1 | |
parent | Added cool stuff (diff) | |
download | dotfiles-bsd-e73f207288934251196a5a3250bf08e085197721.tar.gz dotfiles-bsd-e73f207288934251196a5a3250bf08e085197721.tar.bz2 dotfiles-bsd-e73f207288934251196a5a3250bf08e085197721.tar.xz dotfiles-bsd-e73f207288934251196a5a3250bf08e085197721.tar.zst dotfiles-bsd-e73f207288934251196a5a3250bf08e085197721.zip |
Workspaces rework
-rwxr-xr-x | .config/bspwm/bspwmrc | 10 | ||||
-rwxr-xr-x | .local/bin/dualscreen | 4 | ||||
-rwxr-xr-x | .local/bin/triplescreen | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc index cfa5d36..e208132 100755 --- a/.config/bspwm/bspwmrc +++ b/.config/bspwm/bspwmrc @@ -134,13 +134,13 @@ sub bspc_configs sub bspc_rules { system(BSPC_PATH, 'rule', '-a', 'Emacs', 'state=tiled'); - system(BSPC_PATH, 'rule', '-a', 'Firefox', 'desktop=08', 'follow=true'); - system(BSPC_PATH, 'rule', '-a', 'Wine', 'desktop=07', 'state=floating'); + system(BSPC_PATH, 'rule', '-a', 'Firefox', 'desktop=03', 'follow=true'); + system(BSPC_PATH, 'rule', '-a', 'Wine', 'desktop=04', 'state=floating'); system(BSPC_PATH, 'rule', '-a', 'Dunst', 'layer=above'); system(BSPC_PATH, 'rule', '-a', 'Zathura', 'state=tiled'); - system(BSPC_PATH, 'rule', '-a', 'qTox', 'desktop=12'); + system(BSPC_PATH, 'rule', '-a', 'qTox', 'desktop=11'); system(BSPC_PATH, 'rule', '-a', 'DergodsRealmII', 'state=floating'); - system(BSPC_PATH, 'rule', '-a', 'obs', 'desktop=12', 'follow=true'); + system(BSPC_PATH, 'rule', '-a', 'obs', 'desktop=11', 'follow=true'); return; } @@ -297,7 +297,7 @@ sub run_terms my ($screens) = @_; Time::HiRes::sleep(1); - system(BSPC_PATH, 'desktop', '-f', '09'); + system(BSPC_PATH, 'desktop', '-f', '12'); if ($screens == 3) { fg_on_three_screens(); } diff --git a/.local/bin/dualscreen b/.local/bin/dualscreen index be627f5..86e127b 100755 --- a/.local/bin/dualscreen +++ b/.local/bin/dualscreen @@ -9,5 +9,5 @@ xrandr --output HDMI-3 --off xrandr --output DP-2 --off xrandr --output DP-3 --off -bspc monitor HDMI-1 -d 01 02 03 04 05 06 07 -bspc monitor LVDS-1 -d 08 09 10 11 12 +bspc monitor HDMI-1 -d 01 02 03 04 05 06 07 08 +bspc monitor LVDS-1 -d 09 10 11 12 diff --git a/.local/bin/triplescreen b/.local/bin/triplescreen index 05a4b90..32cb1de 100755 --- a/.local/bin/triplescreen +++ b/.local/bin/triplescreen @@ -9,5 +9,5 @@ xrandr --output HDMI-3 --off xrandr --output DP-2 --off xrandr --output DP-3 --off -bspc monitor HDMI-1 -d 01 02 03 04 05 06 07 -bspc monitor VGA-1 -d 08 09 10 11 12 +bspc monitor HDMI-1 -d 01 02 03 04 05 06 07 08 +bspc monitor VGA-1 -d 09 10 11 12 |