diff options
author | Griffin Smith <root@gws.fyi> | 2020-06-08T14·20-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-06-08T14·20-0400 |
commit | f2ddb560dd6d2aa195f99f48a0d8e9b5c978bd94 (patch) | |
tree | c4f9638e8d65bd953bdca1fc8b751004bb4bf8ac /home | |
parent | 0a7b41284df1b7c124197f89935d37f2d902ee98 (diff) |
drop a bunch of unused stuff from zshrc
Diffstat (limited to 'home')
-rw-r--r-- | home/modules/zshrc | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/home/modules/zshrc b/home/modules/zshrc index 73ceec48e631..cca822c4ce3e 100644 --- a/home/modules/zshrc +++ b/home/modules/zshrc @@ -187,43 +187,6 @@ fi function vconflicts() { $EDITOR $(git status --porcelain | awk '/^UU/ { print $2 }') } - -function fetchall() { -for repo in ~/code/nomi/gems/* ~/code/nomi/services/svc-users ~/code/nomi/services/svc-entities ~/code/go/src/github.com/getnomi/svc-gateway; do - echo -e "\x1b[34;1m=======> \x1b[37;1m$repo\x1b[0m" - git -C $repo fetch -done -} -# }}} - -# Wifi {{{ -# }}} - -# adb {{{ -# }}} - -# Golang {{{ -# }}} - -# Tail logs {{{ -# }}} - -# Running stuff {{{ -# }}} - -# Directories {{{ - - - -# }}} - -# SSH shortcuts {{{ -# }}} - -# Editing config files {{{ -# }}} - -# XRandR {{{ # }}} # fzf {{{ @@ -318,25 +281,6 @@ unset GREP_OPTIONS export GREP_OPTIONS= # }}} -# Keyboard backlight {{{ - -KEYBOARD_BRIGHTNESS_FILE='/sys/devices/platform/applesmc.768/leds/smc::kbd_backlight/brightness' - -setkbd() { - echo $1 | sudo tee $KEYBOARD_BRIGHTNESS_FILE -} - -kbdup() { - curr=$(< $KEYBOARD_BRIGHTNESS_FILE) - echo $(( $curr + 15 )) | sudo tee $KEYBOARD_BRIGHTNESS_FILE -} - -kbdup() { - curr=$(< $KEYBOARD_BRIGHTNESS_FILE) - echo $(( $curr - 15 )) | sudo tee $KEYBOARD_BRIGHTNESS_FILE -} - -# }}} # Run docker containers {{{ # -d \ @@ -359,14 +303,4 @@ kbdup() { # glittershark/firefox # }}} -# Alembic {{{ -function aup() { - alembic upgrade ${1:-head} -} - -function adown() { - alembic downgrade ${1:--1} -} -# }}} - [ -f ./.localrc ] && source ./.localrc |