diff --git a/default.conf b/files/default.conf similarity index 64% rename from default.conf rename to files/default.conf index 40c121a..1ce5de9 100644 --- a/default.conf +++ b/files/default.conf @@ -5,4 +5,4 @@ grave = 102nd # § ± key 102nd = grave # ` ~ key -# THIS GOES IN /etc/keyd/ DIRECTORY!!! +# THIS GOES IN /etc/keyd/ DIRECTORY!!! \ No newline at end of file diff --git a/files/kxkbrc b/files/kxkbrc new file mode 100644 index 0000000..95c2759 --- /dev/null +++ b/files/kxkbrc @@ -0,0 +1,5 @@ +[Layout] +Model=applealu_iso +ResetOldOptions=true + +# THIS GOES IN THE ~/.config/ DIRECTORY \ No newline at end of file diff --git a/lock-on-start.desktop b/files/lock-on-start.desktop similarity index 100% rename from lock-on-start.desktop rename to files/lock-on-start.desktop diff --git a/files/sddm.conf b/files/sddm.conf new file mode 100644 index 0000000..9cd5e02 --- /dev/null +++ b/files/sddm.conf @@ -0,0 +1,4 @@ +# THIS GOES IN THE /etc/ DIRECTORY + +[Autologin] +Session=plasma \ No newline at end of file diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..29d82e7 --- /dev/null +++ b/install.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# This is only meant for Fedora linux btw... + +if [[ "$EUID" = 0 ]]; then + echo "Executing as root." +else + sudo -k + if sudo true; then + echo "Correct root password, executing as root." + else + echo "Wrong root password." + exit 1 + fi +fi + +dnf install neovim git base-devel -y \ No newline at end of file