diff options
-rwxr-xr-x | autorandr/.config/autorandr/postswitch | 8 | ||||
-rw-r--r-- | javascript/.npmrc | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/autorandr/.config/autorandr/postswitch b/autorandr/.config/autorandr/postswitch index f0dd1efb..44cb6ccf 100755 --- a/autorandr/.config/autorandr/postswitch +++ b/autorandr/.config/autorandr/postswitch @@ -2,9 +2,13 @@ DPI=96 case $AUTORANDR_CURRENT_PROFILE in ("laptop") - DPI=144;; + DPI=144 + nmcli radio wifi on + ;; ("docked") - DPI=120;; + DPI=120 + nmcli radio all off + ;; esac xrandr --dpi $DPI diff --git a/javascript/.npmrc b/javascript/.npmrc index ab499739..2da1b6db 100644 --- a/javascript/.npmrc +++ b/javascript/.npmrc @@ -1,3 +1,3 @@ -prefix=$HOME/.local +prefix=${HOME}/.local //registry.npmjs.org/:_authToken=$NPM_TOKEN @satoshipay:registry=http://registry.npmjs.org/ |