diff --git a/bashrc b/bashrc index de14f7e..8fce2da 100644 --- a/bashrc +++ b/bashrc @@ -154,6 +154,9 @@ alias gclone='git clone' # Alias for git push alias gpush='git push' +# Alias for git pull +alias gpull='git pull' + # Alias to kill Signal Private Messenger when crashed alias ksignal='killall -9 signal-desktop' diff --git a/user-bin/propershutdown b/user-bin/propershutdown index dd45ebc..f23ce3e 100755 --- a/user-bin/propershutdown +++ b/user-bin/propershutdown @@ -1,6 +1,6 @@ #!/bin/bash -xmessage "Are you sure you want to shut down the computer?" -center -title "Power options" -font "Monospace bold 10" -default "Cancel" -buttons "Cancel":1,"Log out":2,"Reboot":3,"Shut down":4 >/dev/null +xmessage "Are you sure you want to shut down the computer?" -center -title "Power options" -font "Monospace bold 10" -default "Cancel" -buttons "Cancel":1,"Log out":2,"Reboot":3,"Shut down":4,"Hibernate":5 >/dev/null case $? in 1) @@ -11,4 +11,6 @@ case $? in systemctl reboot;; 4) systemctl poweroff;; +5) + systemctl hibernate;; esac