]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - shell/shell/aliases.in
shell: aliases: use unabbreviated "-brief" in `ip` alias
[config/dotfiles.git] / shell / shell / aliases.in
index 965b8386f61a8b2a1086d7900da0edf2915dcc40..3d339c276677595f95b3ca0f05e30f6e655f8b8a 100644 (file)
@@ -41,11 +41,18 @@ alias mj='make -j$(nproc)'
 alias mu=mutt
 alias rs=reset # like git's reset alias
 alias sa=ssh-add
+alias ta=task
 alias te=tree
-# systemd ... (sc is provided as shell script for better completion)
-alias jc=journalctl
-alias lc=loginctl
-alias mc=machinectl
+alias ti=timew
+
+# systemd ... (sc is provided as shell script for better completion); redirect
+# stderr because my color-stderr hack breaks systemd's terminal detection.
+jc() {
+    journalctl "$@" 2>&1
+}
+lc() {
+    loginctl "$@" 2>&1
+}
 
 
 unalias mv cp 2>/dev/null
@@ -72,7 +79,7 @@ unalias ls 2>/dev/null
 # See `setup.sh` for details. LS_* are replaced with the appropriate values
 # when this file is generated.
 ls() {
-    LS_ARGS -C -F -h "$@" 2>&1 | less
+    LS_ARGS -C -F -h "$@" 2>&1 | less -S
 }
 
 unalias ll lt la lal lat 2>/dev/null
@@ -113,7 +120,7 @@ alias grep='grep --color=auto'
 
 # Pipe output through less.
 tree() {
-    command tree -C "$@" | less
+    command tree -C "$@" | less -S
 }
 
 # Better viewer for info pages .. just pipe everything into less.
@@ -132,6 +139,6 @@ if test "`id -u`" -eq 0; then
 fi
 
 # Use short `ip` output per default.
-alias ip='ip -br'
+alias ip='ip -brief'
 
 # vim: ft=sh