aboutsummaryrefslogtreecommitdiff
path: root/gui/pkgs/bin/uictrl.sh
diff options
context:
space:
mode:
Diffstat (limited to 'gui/pkgs/bin/uictrl.sh')
-rwxr-xr-xgui/pkgs/bin/uictrl.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/gui/pkgs/bin/uictrl.sh b/gui/pkgs/bin/uictrl.sh
deleted file mode 100755
index 46c7219..0000000
--- a/gui/pkgs/bin/uictrl.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env fish
-
-function cycle
- set nsp_ws (wmctrl -d | awk '{if ($9 == "NSP") {print $1}}')
- set current_ws (wmctrl -d | awk '{if ($2 == "*") {print $1}}')
-
- wmctrl -l | awk -v current_ws=$current_ws -v nsp_ws=$nsp_ws '{if ($2 > current_ws && $2 != nsp_ws) {print $2}}' | uniq
- wmctrl -l | awk -v current_ws=$current_ws -v nsp_ws=$nsp_ws '{if ($2 < current_ws && $2 != nsp_ws) {print $2}}' | uniq
-end
-
-switch $argv[1]
- case next
- wmctrl -s (cycle)[1]
- case prev
- wmctrl -s (cycle | tac)[1]
-end