]> git.zndr.dk Git - dotfiles.git/commitdiff
Update git alias
authorJannik ZANDER <jannikz@gmail.com>
Sun, 15 Jul 2018 19:04:26 +0000 (21:04 +0200)
committerJannik ZANDER <jannikz@gmail.com>
Sun, 15 Jul 2018 19:04:26 +0000 (21:04 +0200)
.bash_aliases
.bash_completion
.profile

index 13381cebb95a23ad37a9f6dc76dce60570b2efc7..bae58ecbe97f9e92a7041e21d3f578873aa371ea 100644 (file)
@@ -27,29 +27,44 @@ alias more='less'
 alias rm='rm -i'
 alias cp='cp -i'
 alias mv='mv -i'
+alias ln='ln -i'
 alias md='mkdir -p'
 alias rd='rmdir'
 
+# reboot / halt / poweroff
+alias reboot='sudo /sbin/reboot'
+alias poweroff='sudo /sbin/poweroff'
+alias halt='sudo /sbin/halt'
+alias shutdown='sudo /sbin/shutdown'
+alias apt-get='sudo apt-get'
+alias update='sudo apt-get update && sudo apt-get upgrade'
+
 # My shortcuts
+alias c='clear'
 alias h='history'
 alias e='ranger-cd'
 alias o='rifle'
-alias c='clear'
+alias vi='vim'
+alias top='atop'
 alias open='xdg-open &>/dev/null'
 alias info='info --vi-keys'
 alias ag='ag --path-to-ignore=$HOME/.ignore --skip-vcs-ignores'
 alias rg='rg --path-separator="//"'
 alias githome='git --git-dir=$HOME/.githome --work-tree=$HOME'
-alias gh='githome'
+alias dit='githome'
+alias sudo='sudo '
+alias su='sudo -i'
+alias vlc='vlc *.avi'
+alias wget='wget -c'
+
+# Reboot my home Linksys WAG160N / WAG54 / WAG320 / WAG120N Router / Gateway from *nix.
+alias rebootlinksys="curl -u 'admin:my-super-password' 'http://192.168.1.100/setup.cgi?todo=reboot'"
 
 if [ ! -x "$(which tree 2>/dev/null)" ]
 then
   alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'"
 fi
 
-# Enable aliases to be sudo'ed
-alias sudo='sudo '
-
 # Get week number
 alias week='date +%V'
 
index 35786d1a7e59a74a902af012cadfdb3d59bab961..3db46809301fc97eedda7778a2d4787b11642cb3 100644 (file)
@@ -2,7 +2,7 @@
 _completion_loader git 2> /dev/null
 if type _git &>/dev/null; then
   complete -o "default" -o "nospace" -F _git githome;
-  complete -o "default" -o "nospace" -F _git gh;
+  complete -o "default" -o "nospace" -F _git dit;
 fi;
 
 # Add tab completion for SSH hostnames based on ~/.ssh/config, ignoring wildcards
index 8a2b259066f3930128f91f7d34e7bbf93ce51221..9cb795d6c0e753a17e590d23a7ccde6043dcb528 100644 (file)
--- a/.profile
+++ b/.profile
@@ -26,11 +26,6 @@ export LANGUAGE="en_US.UTF-8"
 export KEYMAP=us
 
 # Set XDG directories
-#export XDG_DATA_HOME=~/.local/share/
-#export XDG_CONFIG_HOME=~/.config/
-#export XDG_DATA_DIRS=/usr/local/share/:/usr/share/
-#export XDG_CACHE_HOME=~/.cache
-
 if [ -f ${XDG_CONFIG_HOME:-~/.config}/user-dirs.dirs ]; then
   . ${XDG_CONFIG_HOME:-~/.config}/user-dirs.dirs
   export XDG_DESKTOP_DIR XDG_DOWNLOAD_DIR XDG_TEMPLATES_DIR XDG_PUBLICSHARE_DIR XDG_DOCUMENTS_DIR XDG_MUSIC_DIR XDG_PICTURES_DIR XDG_VIDEOS_DIR