diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-10-22 22:39:26 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-10-22 22:39:26 +0200 |
| commit | 3d9ff286af272a40c09edda50283c8d4ce959f32 (patch) | |
| tree | ca12463705af2ac872ca584683f4d8eaff350c72 /.local/bin/scripts/bspwm-toggle-visibility.sh | |
| parent | 9a2951d12da3a8f284a68ac14ea35775881b04aa (diff) | |
| download | dotfiles-3d9ff286af272a40c09edda50283c8d4ce959f32.tar.gz dotfiles-3d9ff286af272a40c09edda50283c8d4ce959f32.zip | |
Moved scripts to ~/.scripts
Diffstat (limited to '.local/bin/scripts/bspwm-toggle-visibility.sh')
| -rwxr-xr-x | .local/bin/scripts/bspwm-toggle-visibility.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.local/bin/scripts/bspwm-toggle-visibility.sh b/.local/bin/scripts/bspwm-toggle-visibility.sh deleted file mode 100755 index 45a4c53..0000000 --- a/.local/bin/scripts/bspwm-toggle-visibility.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -# Created By: srdusr -# Created On: Mon 18 Sep 2023 18:37:21 CAT -# Project: Bspwm script to toggle visibility of initial window and bring focus back to it - -# Get the ID of the currently focused desktop -current_desktop_id=$(bspc query -D -d focused --names) - -# Get the ID of the first hidden window in the current desktop -hidden_window_id=$(bspc query -N -d "$current_desktop_id" -n .hidden | head -n 1) - -# Check if there's a hidden window in the current desktop -if [[ -n "$hidden_window_id" ]]; then - # There's a hidden window, so unhide it - bspc node "$hidden_window_id" -g hidden=off - # Bring focus back to the previously hidden window - bspc node -f "$hidden_window_id" -else - # There's no hidden window in the current desktop, hide the first available window - first_window_id=$(bspc query -N -n focused.window) - bspc node "$first_window_id" -g hidden=on -fi |
