ws
This commit is contained in:
parent
b37e4abc4e
commit
304d163d74
1 changed files with 11 additions and 11 deletions
|
@ -1,12 +1,12 @@
|
||||||
function ws {
|
ws() {
|
||||||
local boolean="${1}"
|
local boolean="${1}"
|
||||||
if [ "${boolean}" == '1' ] ; then
|
if [ "${boolean}" = "1" ]; then
|
||||||
boolean='true'
|
boolean="true"
|
||||||
else
|
else
|
||||||
boolean='false'
|
boolean="false"
|
||||||
fi
|
fi
|
||||||
gsettings 'set' \
|
gsettings set \
|
||||||
'org.gnome.mutter' \
|
"org.gnome.mutter" \
|
||||||
'workspaces-only-on-primary' \
|
"workspaces-only-on-primary" \
|
||||||
"${boolean}"
|
"${boolean}"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue