fix: source user-dirs.dirs
This commit is contained in:
parent
625ee51457
commit
e359e4411d
4 changed files with 11 additions and 5 deletions
|
@ -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 &
|
||||
|
|
|
@ -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%}
|
||||
|
|
6
.profile
6
.profile
|
@ -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 &
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue