mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
21 lines
402 B
Text
21 lines
402 B
Text
|
|
#! /bin/bash
|
||
|
|
function clamp {
|
||
|
|
min=$1
|
||
|
|
max=$2
|
||
|
|
val=$3
|
||
|
|
python -c "print(max($min, min($val, $max)))"
|
||
|
|
}
|
||
|
|
|
||
|
|
direction=$1
|
||
|
|
current=$2
|
||
|
|
if test "$direction" = "down"
|
||
|
|
then
|
||
|
|
target=$(clamp 1 10 $(($current+1)))
|
||
|
|
echo "jumping to $target"
|
||
|
|
hyprctl dispatch workspace $target
|
||
|
|
elif test "$direction" = "up"
|
||
|
|
then
|
||
|
|
target=$(clamp 1 10 $(($current-1)))
|
||
|
|
echo "jumping to $target"
|
||
|
|
hyprctl dispatch workspace $target
|
||
|
|
fi
|