diff options
author | David Runge <david.runge@frqrec.com> | 2014-10-02 12:57:20 +0200 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2014-10-02 12:57:20 +0200 |
commit | 641776ca9e642e55c974ed3664bfc0a330900ca3 (patch) | |
tree | 4edb44586b7f9c63a5cc17dc1e3a3eb938940612 | |
parent | 829f98ab45988e4eed05bc41e4e9d2aa1e284ca6 (diff) | |
download | dotfiles-641776ca9e642e55c974ed3664bfc0a330900ca3.tar.gz dotfiles-641776ca9e642e55c974ed3664bfc0a330900ca3.tar.bz2 dotfiles-641776ca9e642e55c974ed3664bfc0a330900ca3.tar.xz dotfiles-641776ca9e642e55c974ed3664bfc0a330900ca3.zip |
Adding systemd suspend alias
-rw-r--r-- | .zsh.after/aliases.zsh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.zsh.after/aliases.zsh b/.zsh.after/aliases.zsh index 8201ef6..54881f8 100644 --- a/.zsh.after/aliases.zsh +++ b/.zsh.after/aliases.zsh @@ -105,6 +105,7 @@ alias sdureload='systemctl --user daemon-reload' alias sdiso='sudo systemctl isolate ' alias sdreboot='sudo systemctl reboot' alias sdpoweroff='sudo systemctl poweroff' +alias sdsuspend='sudo systemctl suspend' #systemd bootchart alias sda='systemd-analyze' alias sdab='systemd-analyze blame' @@ -190,12 +191,13 @@ alias bthp="pactl load-module module-bluetooth-device address='00:1B:66:01:6C:D1 #WOL alias woldave_in='wol -i homey 00:15:f2:e0:e0:c6' #wake up homey -alias woldave_ex='wol -p X -i frqb.zapto.org 00:15:f2:e0:e0:c6' #wake up homey via +alias woldave_ex='wol -p X -i frqb.zapto.org 00:15:f2:e0:e0:c6' #wake up homey via ## OVERRIDES # Colorize grep output alias grep='grep --color=auto --exclude-dir=.git' alias psgrep='ps aux | grep -v "grep"| grep $1' +alias greptodo='grep -R "TODO" .' alias exit="clear; exit" alias du='du -h' alias .='source' |