.dotfiles/.xprofile

26 lines
390 B
Bash

. "$HOME/.config/environment"
numlockx on
setxkbmap de
setxkbmap -option caps:none
_autostart()
{
### wait for audio
start-audio pipewire
### wait for internet
wait_for_service "network-online.target"
pass x
(pass notes/keepass | head -n 1 | keepassxc --pw-stdin ~/sync/passwords.kdbx) &
pass x && sleep 5
systemctl --user start autostart.target
}
_autostart &
# vim: ft=sh