.dotfiles/.xprofile

28 lines
426 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
2022-10-27 13:55:18 +00:00
setxkbmap -option compose:menu
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
2022-10-24 14:57:31 +00:00
(pass keepass | head -n 1 | keepassxc --pw-stdin ~/sync/passwords.kdbx) &
pass x && sleep 5
2022-01-10 13:25:26 +00:00
2022-10-22 00:13:06 +00:00
autoinstall graphical
autostart-manage start
}
2021-07-09 22:52:56 +00:00
_autostart &