From f4e2316a1acbe703d114cfbe23c53c45bd0dff8a Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Mon, 17 Jun 2019 00:37:26 +0200 Subject: [PATCH] [shell/aliases] reorder xord shortcuts and remove unused 'chmox' --- shell/aliases.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/shell/aliases.sh b/shell/aliases.sh index 4d49b47..0e5e570 100755 --- a/shell/aliases.sh +++ b/shell/aliases.sh @@ -1,7 +1,6 @@ #!/bin/sh #alias definitions -alias chmox="chmod +x" alias cd..="cd .." alias gits="git status" alias subl='subl3' @@ -70,8 +69,6 @@ if [ ! -z "$(type sudo 2>/dev/null)" -a "$USER" != 'root' ]; then } fi -alias mon-update="xrandr --auto" - alias pwedit="sudo vim -p /etc/{passwd,group,shadow,gshadow}" alias cmdlist='find $(echo $PATH | tr ":" "\n") | awk -F / "{print \$NF}" | sort -u' alias makepasswd='makepasswd --minchars=10 --maxchars=25 --count=10' @@ -87,6 +84,7 @@ alias notify='notify-send Terminal "Process has been finished"' # xorg alias screen-off-x='xset -display :0.0 dpms force off' +alias mon-update="xrandr --auto" # wayland: alias pdfpc="pdfpc --wayland-workaround"