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