From 7a8a44cca813eefab8883548e8202076e8da1d61 Mon Sep 17 00:00:00 2001 From: mitrhaCoding Date: Tue, 31 Mar 2026 23:16:19 +0200 Subject: [PATCH] idk --- default.conf => files/default.conf | 2 +- files/kxkbrc | 5 +++++ .../lock-on-start.desktop | 0 files/sddm.conf | 4 ++++ install.sh | 16 ++++++++++++++++ 5 files changed, 26 insertions(+), 1 deletion(-) rename default.conf => files/default.conf (64%) create mode 100644 files/kxkbrc rename lock-on-start.desktop => files/lock-on-start.desktop (100%) create mode 100644 files/sddm.conf create mode 100644 install.sh 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