diff options
author | Karel Kočí <cynerd@email.cz> | 2017-10-20 18:10:23 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-10-20 18:10:23 +0200 |
commit | 167166c9c1c0ab80dc1a67373241181b00b77b87 (patch) | |
tree | a8811dd4697ff050eb5da27ca1d80d8b1e1e21ee | |
parent | e908c03fe775787c048ead719220e64b5af8bfe6 (diff) | |
download | myconfigs-167166c9c1c0ab80dc1a67373241181b00b77b87.tar.gz myconfigs-167166c9c1c0ab80dc1a67373241181b00b77b87.tar.bz2 myconfigs-167166c9c1c0ab80dc1a67373241181b00b77b87.zip |
Tiny cleanup
-rwxr-xr-x | config/i3blocks/scripts/mpd | 1 | ||||
-rw-r--r-- | shellrc | 9 |
2 files changed, 2 insertions, 8 deletions
diff --git a/config/i3blocks/scripts/mpd b/config/i3blocks/scripts/mpd index 12f0fdd..32babe1 100755 --- a/config/i3blocks/scripts/mpd +++ b/config/i3blocks/scripts/mpd @@ -54,7 +54,6 @@ case "$BLOCK_BUTTON" in ;; esac -STATUS="$(mpc $HOST status)" if echo "$STATUS" | grep -qE "(playing|paused)"; then echo `mpc $HOST -f "♫ %artist%, %album%, %title%" status | head -1` echo @@ -7,13 +7,8 @@ ################################################################################# # Aliases -if [ "$(uname -s)" = "FreeBSD" ]; then - alias ls='ls -G' -else - alias ls='ls --color=auto' - eval $(dircolors -b) - alias make="make -j$(nproc)" -fi +alias ls='ls --color=auto' +eval $(dircolors -b) alias ll='ls -lh' alias df='df -h' alias du='du -h' |