]> git.rmz.io Git - dotfiles.git/blob - xinit/xprofile
xinit: configue xautolock in Xresources
[dotfiles.git] / xinit / xprofile
1 #!/usr/bin/env bash
2
3 URXVT_PERL_LIB=$URXVT_PERL_LIB:$HOME/src/dotfiles/urxvt/autocomplete-ALL-the-things
4 URXVT_PERL_LIB=$URXVT_PERL_LIB:$HOME/src/dotfiles/urxvt/font-size
5 URXVT_PERL_LIB=$URXVT_PERL_LIB:$HOME/src/dotfiles/urxvt/perls
6 URXVT_PERL_LIB=$URXVT_PERL_LIB:$HOME/src/dotfiles/urxvt/perls/deprecated
7 export URXVT_PERL_LIB
8
9 urxvtd -q -o &
10
11 start-pulseaudio-x11
12 compton --config ~/.config/compton.conf &
13 unclutter --timeout 1 &
14 xcape -e "Control_L=Escape;Control_R=Escape"
15
16 hash ncmpcpp && urxvtc -name ncmpcpp -icon ~/src/dotfiles/icons/bmp.png -e ncmpcpp
17 hash weechat && urxvtc -name weechat -icon ~/src/dotfiles/icons/im-irc.png -e weechat
18 hash neomutt && urxvtc -name mutt -icon ~/src/dotfiles/icons/internet-mail.png -e neomutt
19
20 qutebrowser &
21
22 rc_dir="$XDG_CONFIG_HOME/xinit/xprofile.d"
23 if [[ -d "$rc_dir" ]] ; then
24 for f in "$rc_dir"/?*.sh ; do
25 [ -x "$f" ] && source "$f"
26 done
27 unset f
28 fi
29 unset rc_dir