.dotfiles/.xprofile

26 lines
378 B
Text
Raw Normal View History

#!/usr/bin/env sh
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 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-manage start
}
2021-07-09 22:52:56 +00:00
_autostart &