.dotfiles/.xprofile

32 lines
713 B
Plaintext
Raw Normal View History

2020-02-28 17:13:33 +00:00
[ -f "$HOME/.config/user-dirs.dirs" ] && source $HOME/.config/user-dirs.dirs
2019-09-30 09:34:06 +00:00
xcompmgr -c -r0 &
2019-12-20 01:35:30 +00:00
export ZDOTDIR="$HOME/.config/zsh"
setxkbmap de
2020-03-02 10:13:29 +00:00
setxkbmap -option caps:none
_autostart_on_launch()
{
ckb-next -b &
steam-runtime -silent -tcp &
transmission-gtk -m &
conky --daemonize --config="$HOME/.config/conky/clock.conf"
conky --daemonize --config="$HOME/.config/conky/cpu_ram_storage.conf"
2020-02-28 17:13:33 +00:00
feh --bg-fill $XDG_PICTURES_DIR/wallpaper/active_wallpaper
2020-02-07 20:46:06 +00:00
sleep 8
env GTK_THEME=Adwaita:light firefox &
teamspeak3 &
2020-03-11 10:59:26 +00:00
#evolution &
alacritty --class "mail" -e sh -c "notmuch new && neomutt" &
signal-desktop &
riot-desktop &
}
_autostart_on_launch &
2020-02-28 17:13:33 +00:00
# vim: ft=sh