6 lines
144 B
Bash
Executable File
6 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
current=$(hyprctl activeworkspace -j | jq '.id')
|
|
if [ "$current" -gt 1 ]; then
|
|
hyprctl dispatch workspace $(( current - 1 ))
|
|
fi
|