31 lines
		
	
	
	
		
			713 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			713 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
[ -f "$HOME/.config/user-dirs.dirs" ] && source $HOME/.config/user-dirs.dirs
 | 
						|
 | 
						|
xcompmgr -c -r0 &
 | 
						|
 | 
						|
export ZDOTDIR="$HOME/.config/zsh"
 | 
						|
 | 
						|
setxkbmap de
 | 
						|
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"
 | 
						|
    feh --bg-fill $XDG_PICTURES_DIR/wallpaper/active_wallpaper
 | 
						|
 | 
						|
    sleep 8
 | 
						|
    env GTK_THEME=Adwaita:light firefox &
 | 
						|
    teamspeak3 &
 | 
						|
    #evolution &
 | 
						|
    alacritty --class "mail" -e sh -c "notmuch new && neomutt" &
 | 
						|
    signal-desktop &
 | 
						|
    riot-desktop &
 | 
						|
}
 | 
						|
 | 
						|
_autostart_on_launch &
 | 
						|
 | 
						|
# vim: ft=sh
 |