14 lines
226 B
Bash
14 lines
226 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# RUN AFTER DESKTOP SETUP!
|
||
|
|
||
|
apk add doas dbus dbus-x11 elogind polkit-elogind xfce-polkit
|
||
|
|
||
|
rc-update add dbus
|
||
|
rc-update add elogind
|
||
|
|
||
|
service dbus start
|
||
|
service elogind start
|
||
|
|
||
|
echo "Done. Remember configuring doas!"
|