sh/bash/proxy.sh
2024-11-13 11:34:59 +01:00

8 lines
150 B
Bash

socks() {
local value
case "${1}" in
"on") value="manual" ;;
*) value="none" ;;
esac
gsettings set "org.gnome.system.proxy" "mode" "${value}"
}