.dotfiles/.xprofile

72 lines
1.5 KiB
Plaintext
Raw Normal View History

2020-07-15 18:26:50 +00:00
source $HOME/.config/environment
2020-02-28 17:13:33 +00:00
2020-08-18 09:41:18 +00:00
xcompmgr -n -f -D3 &
2020-07-15 13:50:56 +00:00
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
2020-12-23 15:44:13 +00:00
gpg2 --card-status > /dev/null
2020-07-15 13:50:56 +00:00
fi
_autostart_on_launch()
{
xrandr --output DVI-D-0 --left-of HDMI-A-0
xrandr --output HDMI-A-0 --mode 2560x1440 --refresh 144
2020-07-15 13:50:56 +00:00
dunst &
ckb-next --background &
2020-07-15 13:50:56 +00:00
parcellite &
solaar --window hide &
sxhkd &
$HOME/.config/bspwm/swallow.py &
$HOME/.config/bspwm/focus-voip.py &
conky --daemonize --config="$HOME/.config/conky/clock.conf"
2021-03-07 20:34:02 +00:00
conky --daemonize --config="$HOME/.config/conky/system.conf"
2020-12-23 15:44:13 +00:00
conky --daemonize --config="$HOME/.config/conky/archlinux-updates.conf"
2020-02-28 17:13:33 +00:00
feh --bg-fill $XDG_PICTURES_DIR/wallpaper/active_wallpaper
2021-02-13 22:02:27 +00:00
### wait for internet and audio
sleep 10
start_jack
sleep 2
2020-07-15 13:50:56 +00:00
syncthing -no-browser &
2020-12-23 15:44:13 +00:00
#actkbd --grab --config ~/.config/actkbd/actkbd.conf --device /dev/input/by-id/usb-Dell_Dell_USB_Keyboard-event-kbd &
2020-07-15 13:50:56 +00:00
/usr/lib/kdeconnectd &
#transmission-gtk --minimized &
qbittorrent &
#steam-runtime -silent -tcp &
flatpak run com.valvesoftware.Steam -silent &
qutebrowser &
2020-07-15 13:50:56 +00:00
sleep 1
2021-02-13 22:02:27 +00:00
### Workspace VOIP
teamspeak3 &
2021-02-13 22:02:27 +00:00
#sleep 2
#alacritty --class "mail" --command sh -c "neomutt" &
2020-07-15 13:50:56 +00:00
sleep 1
2020-07-19 09:13:03 +00:00
element-desktop &
2021-02-13 22:02:27 +00:00
### Workspace Messenger
2021-01-14 10:53:14 +00:00
signal-desktop &
2021-02-13 22:02:27 +00:00
sleep 1
thunderbird &
2020-07-15 13:50:56 +00:00
mopidy &
}
_autostart_on_launch &
2020-02-28 17:13:33 +00:00
# vim: ft=sh