added O to unread and made network script smaller
authorMart Lubbers <mart@martlubbers.net>
Tue, 2 Feb 2016 12:33:51 +0000 (13:33 +0100)
committerMart Lubbers <mart@martlubbers.net>
Tue, 2 Feb 2016 12:33:51 +0000 (13:33 +0100)
email/.mutt/colors.muttrc
shell/.bashrc
x/.local/bin/network

index 14f0a08..f9deffe 100644 (file)
@@ -16,6 +16,7 @@ color hdrdefault cyan default
 color signature cyan default
 color index green default ~p
 color index brightyellow default ~N
+color index brightyellow default ~O
 color index blue default ~T
 color index red default ~D
 color index brightblue default ~F
index 4b99ac3..0d6e71f 100644 (file)
@@ -20,7 +20,8 @@ export PATH=$PATH:$CLEAN_HOME/lib/exe:$CLEAN_HOME/bin:~/.local/bin
 
 alias ls='ls --color=auto'
 alias grep='grep --color=auto'
-alias vi=vim
+alias vi='vim'
+alias autoclean='sudo pacman -R $(pacman -Qtdq)'
 
 set_prompt(){
        last_c=$?
index 21a0eba..2d24504 100755 (executable)
@@ -1,3 +1,2 @@
-#!/bin/bash
-find /etc/netctl -maxdepth 1 -type f | xargs -n 1 basename | dmenu | \
-       xargs -I{} sudo -A netctl switch-to {}
+#!/bin/bash -e
+sudo -A netctl switch-to "$(netctl list | cut -b 3- | dmenu)"