add: more neomutt switching progress

This commit is contained in:
Tobias Reisinger 2020-03-11 11:59:26 +01:00
parent 1344311ca3
commit 1e61193578
4 changed files with 6 additions and 3 deletions

View file

@ -36,5 +36,6 @@ bspc rule -a 'Riot' desktop='messenger'
bspc rule -a 'Signal' desktop='messenger' follow='true' bspc rule -a 'Signal' desktop='messenger' follow='true'
bspc rule -a 'Steam' desktop='game' bspc rule -a 'Steam' desktop='game'
bspc rule -a 'Zathura' state='tiled' bspc rule -a 'Zathura' state='tiled'
bspc rule -a 'Alacritty' desktop='messenger'
$HOME/.config/polybar/launch.sh & $HOME/.config/polybar/launch.sh &

View file

@ -20,6 +20,6 @@
format-underline = #1794D1 format-underline = #1794D1
format = <label> format = <label>
click-left = alacritty -e sudo pacman -Su click-left = alacritty -e sh -c "sudo pacman -Su; read" &
label = %output% label = %output%

View file

@ -3,6 +3,7 @@
export EDITOR='/usr/bin/vim' export EDITOR='/usr/bin/vim'
export VIMINIT="source $HOME/.config/vim/vimrc" export VIMINIT="source $HOME/.config/vim/vimrc"
export NOTMUCH_CONFIG="$HOME/.config/notmuch/config" export NOTMUCH_CONFIG="$HOME/.config/notmuch/config"
export MAILCAPS="$HOME/.config/mailcap/mailcaprc"
export PASSWORD_STORE_GENERATED_LENGTH='64' export PASSWORD_STORE_GENERATED_LENGTH='64'
if [ -x "$(command -v gpgconf)" ] if [ -x "$(command -v gpgconf)" ]
@ -13,7 +14,7 @@ fi
if [ -x "$(command -v mopidy)" ] if [ -x "$(command -v mopidy)" ]
then then
sh -c "sleep 8 && mopidy" & # mopidy needs internet (wait 8 secs) for spotify sh -c "sleep 8 && mopidy > /tmp/mopidy.log" & # mopidy needs internet (wait 8 secs) for spotify
else else
[ -x "$(command -v mpd)" ] && mpd & [ -x "$(command -v mpd)" ] && mpd &
fi fi

View file

@ -20,7 +20,8 @@ _autostart_on_launch()
sleep 8 sleep 8
env GTK_THEME=Adwaita:light firefox & env GTK_THEME=Adwaita:light firefox &
teamspeak3 & teamspeak3 &
evolution & #evolution &
alacritty --class "mail" -e sh -c "notmuch new && neomutt" &
signal-desktop & signal-desktop &
riot-desktop & riot-desktop &
} }