gnome/proxy
This commit is contained in:
parent
d82805ff38
commit
b380b2c0b0
2 changed files with 9 additions and 8 deletions
|
@ -1,3 +1,12 @@
|
|||
sh_gnome_proxy() {
|
||||
local value
|
||||
case "${1}" in
|
||||
"on") value="manual" ;;
|
||||
*) value="none" ;;
|
||||
esac
|
||||
gsettings set "org.gnome.system.proxy" "mode" "${value}"
|
||||
}
|
||||
|
||||
sh_gnome_workspaces_primary() {
|
||||
local bool
|
||||
local group="org.gnome.mutter"
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
socks() {
|
||||
local value
|
||||
case "${1}" in
|
||||
"on") value="manual" ;;
|
||||
*) value="none" ;;
|
||||
esac
|
||||
gsettings set "org.gnome.system.proxy" "mode" "${value}"
|
||||
}
|
Loading…
Reference in a new issue