diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-14 15:42:20 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-14 15:42:20 +1000 |
| commit | b5a91d3ca57d1369d0b7b502112c4b4c9849d26c (patch) | |
| tree | 8ea45e54e0b0c826f65f54ebf82e41cb68163221 /workspace-action.sh | |
| parent | feat: impl pip subcommand (diff) | |
| download | caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.tar.gz caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.tar.bz2 caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.zip | |
internal: remove all legacy fish scripts
Diffstat (limited to 'workspace-action.sh')
| -rwxr-xr-x | workspace-action.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/workspace-action.sh b/workspace-action.sh deleted file mode 100755 index 76d0950..0000000 --- a/workspace-action.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -active_ws=$(hyprctl activeworkspace -j | jq -r '.id') - -if [[ "$1" == *"group" ]]; then - # Move to group - hyprctl dispatch "${1::-5}" $((($2 - 1) * 10 + ${active_ws:0-1})) -else - # Move to ws in group - hyprctl dispatch "$1" $((((active_ws - 1) / 10) * 10 + $2)) -fi |