Initial commit

This commit is contained in:
2024-07-26 17:01:46 +02:00
commit 3898822673
7 changed files with 66 additions and 0 deletions

3
system/installadditions.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
apk add bash zoxide neovim eza bat

13
system/installbasics.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/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!"

13
system/installthemes.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
cd /usr/share/icons/
wget https://github.com/EliverLara/candy-icons/archive/refs/heads/master.zip
unzip master.zip
rm master.zip
cd /usr/share/themes/
wget https://github.com/EliverLara/Sweet/releases/download/latest/Sweet-Dark-v40.tar.xz
tar xf Sweet-Dark-v40.tar.xz
rm Sweet-Dark-v40.tar.xz
echo "Themes installed. Configuration has to be done manually."