.dotfiles/.xprofile

49 lines
831 B
Plaintext
Raw Normal View History

2022-10-13 12:43:07 +00:00
. "$HOME/.config/environment"
2020-02-28 17:13:33 +00:00
2020-07-15 13:50:56 +00:00
numlockx on
setxkbmap de
2020-03-02 10:13:29 +00:00
setxkbmap -option caps:none
2021-07-09 23:08:18 +00:00
_autostart_apps()
2021-04-07 10:39:01 +00:00
{
dunst &
parcellite &
solaar --window hide &
conky --daemonize --config="$HOME/.config/conky/clock.conf"
conky --daemonize --config="$HOME/.config/conky/system.conf"
conky --daemonize --config="$HOME/.config/conky/archlinux-updates.conf"
syncthing -no-browser &
/usr/lib/kdeconnectd &
qbittorrent &
2021-07-09 23:08:18 +00:00
qutebrowser &
2021-07-09 23:08:18 +00:00
mopidy &
2022-01-30 20:29:23 +00:00
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
2021-07-09 22:52:56 +00:00
}
2020-07-15 13:50:56 +00:00
2021-07-09 22:52:56 +00:00
_autostart()
{
### wait for audio
2022-10-13 14:08:14 +00:00
start-audio pipewire
2021-07-09 23:08:18 +00:00
### wait for internet
wait_for_service "network-online.target"
2021-02-13 22:02:27 +00:00
pass x
(pass notes/keepass | head -n 1 | keepassxc --pw-stdin ~/sync/passwords.kdbx) &
pass x && sleep 5
2022-01-10 13:25:26 +00:00
_autostart_apps &
2022-10-13 12:43:07 +00:00
systemctl --user start autostart.target
}
2021-07-09 22:52:56 +00:00
_autostart &
2020-02-28 17:13:33 +00:00
# vim: ft=sh