2022-10-15 00:31:44 +00:00
|
|
|
#!/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
|
2020-02-07 16:32:59 +00:00
|
|
|
|
|
|
|
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
|
2020-02-07 16:32:59 +00:00
|
|
|
|
2021-07-09 22:52:56 +00:00
|
|
|
_autostart()
|
|
|
|
{
|
2022-10-04 20:23:22 +00:00
|
|
|
### wait for audio
|
2022-10-13 14:08:14 +00:00
|
|
|
start-audio pipewire
|
2021-07-09 23:08:18 +00:00
|
|
|
|
2022-10-04 20:23:22 +00:00
|
|
|
### wait for internet
|
2022-12-14 14:26:53 +00:00
|
|
|
wait-for-service "network-online.target"
|
2021-02-13 22:02:27 +00:00
|
|
|
|
2022-10-04 20:23:22 +00:00
|
|
|
pass x
|
2022-10-24 14:57:31 +00:00
|
|
|
(pass keepass | head -n 1 | keepassxc --pw-stdin ~/sync/passwords.kdbx) &
|
2022-10-04 20:23:22 +00:00
|
|
|
pass x && sleep 5
|
2022-01-10 13:25:26 +00:00
|
|
|
|
2022-10-22 00:13:06 +00:00
|
|
|
autoinstall graphical
|
2022-10-15 00:31:44 +00:00
|
|
|
autostart-manage start
|
2020-02-07 16:32:59 +00:00
|
|
|
}
|
|
|
|
|
2021-07-09 22:52:56 +00:00
|
|
|
_autostart &
|