sh/bash/gsettings.sh
2023-08-21 14:32:38 +02:00

12 lines
237 B
Bash

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}"
}