fix: source user-dirs.dirs

This commit is contained in:
Tobias Reisinger 2020-02-28 18:13:33 +01:00
parent 625ee51457
commit e359e4411d
4 changed files with 11 additions and 5 deletions

View file

@ -37,7 +37,4 @@ bspc rule -a 'Signal' desktop='messenger' follow='true'
bspc rule -a 'Steam' desktop='game'
bspc rule -a 'Zathura' state='tiled'
setxkbmap de
feh --bg-fill ~/Pictures/wallpaper/active_wallpaper
$HOME/.config/polybar/launch.sh &

View file

@ -1,3 +1,5 @@
[ -f "$HOME/.config/user-dirs.dirs" ] && source $HOME/.config/user-dirs.dirs
# Enable colors and change prompt:
autoload -U colors && colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}

View file

@ -1,3 +1,5 @@
[ -f "$HOME/.config/user-dirs.dirs" ] && source $HOME/.config/user-dirs.dirs
export EDITOR='/usr/bin/vim'
export VIMINIT="source $HOME/.config/vim/vimrc"
export NOTMUCH_CONFIG="$HOME/.config/notmuch/config"
@ -11,9 +13,9 @@ fi
if [ -x "$(command -v mopidy)" ]
then
mpd &
sh -c "sleep 8 && mopidy" & # mopidy needs internet (wait 8 secs) for spotify
else
if [ -x "$(command -v mpd)" ] && mopidy &
[ -x "$(command -v mpd)" ] && mpd &
fi
[ -x "$(command -v ympd)" ] && ympd --webport 54594 &

View file

@ -1,3 +1,5 @@
[ -f "$HOME/.config/user-dirs.dirs" ] && source $HOME/.config/user-dirs.dirs
xcompmgr -c -r0 &
export ZDOTDIR="$HOME/.config/zsh"
@ -12,6 +14,7 @@ _autostart_on_launch()
conky --daemonize --config="$HOME/.config/conky/clock.conf"
conky --daemonize --config="$HOME/.config/conky/cpu_ram_storage.conf"
feh --bg-fill $XDG_PICTURES_DIR/wallpaper/active_wallpaper
sleep 8
env GTK_THEME=Adwaita:light firefox &
@ -22,3 +25,5 @@ _autostart_on_launch()
}
_autostart_on_launch &
# vim: ft=sh