18 lines
395 B
Bash
Executable File
18 lines
395 B
Bash
Executable File
#!/bin/bash
|
|
direction=$1
|
|
current=$2
|
|
|
|
exit 0 # For the time being this script only exist to keep current_workspace from being lazy
|
|
|
|
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
|
|
fi
|
|
|