.dotfiles/.xprofile

58 lines
1.2 KiB
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
2020-07-15 13:50:56 +00:00
source $HOME/.config/enviroment
2020-02-28 17:13:33 +00:00
2020-07-15 13:50:56 +00:00
#xcompmgr -c -r0 &
picom &
numlockx on
setxkbmap de
2020-03-02 10:13:29 +00:00
setxkbmap -option caps:none
2020-07-15 13:50:56 +00:00
if [ -x "$(command -v gpgconf)" ]
then
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
gpgconf --launch gpg-agent
fi
_autostart_on_launch()
{
2020-07-15 13:50:56 +00:00
dunst &
ckb-next -b &
2020-07-15 13:50:56 +00:00
parcellite &
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
2020-07-15 13:50:56 +00:00
syncthing -no-browser &
actkbd -g -c ~/.config/actkbd/actkbd.conf -d /dev/input/by-id/usb-Dell_Dell_USB_Keyboard-event-kbd &
/usr/lib/kdeconnectd &
transmission-gtk -m &
steam-runtime -silent -tcp &
env GTK_THEME=Adwaita:light firefox &
2020-07-15 13:50:56 +00:00
start_jack >/tmp/jack.log 2>&1
#launch_jack
sleep 1
teamspeak3 &
2020-07-15 13:50:56 +00:00
sleep 2
alacritty --class "mail" -e sh -c "neomutt" &
sleep 1
riot-desktop &
2020-07-15 13:50:56 +00:00
sleep 1
bspc node "@voip:/first" -f
dg-open "steam://open/friends/"
mopidy &
ympd --webport 54594 &
}
_autostart_on_launch &
2020-02-28 17:13:33 +00:00
# vim: ft=sh