Files
dotfiles/home/.config/eww/widgets/workspaces/change-active-workspace.sh
T
2024-07-06 12:59:14 +03:00

18 lines
363 B
Bash

#!/usr/bin/env sh
direction=$1
current=$2
if [[ $direction == "down" ]]; then
target=$(($current+1))
if [[ $target == 11 ]]; then
exit 0
fi
hyprctl dispatch workspace $target
elif [[ $direction == "up" ]]; then
target=$(($current-1))
hyprctl dispatch workspace $target
else
target=$1
hyprctl dispatch workspace $target
fi