sh/bash/gsettings.sh

13 lines
197 B
Bash
Raw Normal View History

2024-11-12 05:43:20 +00:00
ws() {
local boolean="${1}"
if [ "${boolean}" = "1" ]; then
boolean="true"
else
boolean="false"
fi
gsettings set \
"org.gnome.mutter" \
"workspaces-only-on-primary" \
"${boolean}"
2023-08-21 12:32:38 +00:00
}