aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/scripts/bspwm-toggle-visibility.sh
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-10-17 21:27:34 +0200
committersrdusr <trevorgray@srdusr.com>2023-10-17 21:27:34 +0200
commit9a6cfff14bd64a0de2a048a9424e9bc06901826a (patch)
tree6ee2872b8f1b5c53d0e30503775cb743447e9a43 /.local/bin/scripts/bspwm-toggle-visibility.sh
parent54a7c1bf02da30c353ddb4af51b065d895801f47 (diff)
parent62140bc00089af7599cc4b2129ab1d4bba4a7796 (diff)
downloaddotfiles-9a6cfff14bd64a0de2a048a9424e9bc06901826a.tar.gz
dotfiles-9a6cfff14bd64a0de2a048a9424e9bc06901826a.zip
Merge commit 'a0ae3565b563f2ae19d5002e25b7a47d1724a6b2'
Diffstat (limited to '.local/bin/scripts/bspwm-toggle-visibility.sh')
-rwxr-xr-x.local/bin/scripts/bspwm-toggle-visibility.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/.local/bin/scripts/bspwm-toggle-visibility.sh b/.local/bin/scripts/bspwm-toggle-visibility.sh
new file mode 100755
index 0000000..45a4c53
--- /dev/null
+++ b/.local/bin/scripts/bspwm-toggle-visibility.sh
@@ -0,0 +1,23 @@
+#!/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