sh/bash/gsettings.sh

13 lines
237 B
Bash
Raw Normal View History

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