.
diff --git a/usr/share/sddm/themes/moonarch-sddm/Main.qml b/usr/share/sddm/themes/moonarch-sddm/Main.qml
deleted file mode 100644
index 4b34315..0000000
--- a/usr/share/sddm/themes/moonarch-sddm/Main.qml
+++ /dev/null
@@ -1,256 +0,0 @@
-// Config created by Keyitdev https://github.com/Keyitdev/sddm-astronaut-theme
-// Copyright (C) 2022-2024 Keyitdev
-// Based on https://github.com/MarianArlt/sddm-sugar-dark
-// Distributed under the GPLv3+ License https://www.gnu.org/licenses/gpl-3.0.html
-
-import QtQuick 2.15
-import QtQuick.Layouts 1.15
-import QtQuick.Controls 2.15
-import Qt5Compat.GraphicalEffects
-import "Components"
-
-Pane {
- id: root
-
- height: config.ScreenHeight || Screen.height
- width: config.ScreenWidth || Screen.ScreenWidth
-
- LayoutMirroring.enabled: config.ForceRightToLeft == "true" ? true : Qt.application.layoutDirection === Qt.RightToLeft
- LayoutMirroring.childrenInherit: true
-
- padding: config.ScreenPadding
- palette.button: "transparent"
- palette.highlight: config.AccentColor
- palette.highlightedText: config.OverrideTextFieldColor !== "" ? config.OverrideTextFieldColor : root.palette.highlight
- palette.text: config.MainColor
- palette.buttonText: config.MainColor
- palette.window: config.BackgroundColor
-
- font.family: config.Font
- font.pointSize: config.FontSize !== "" ? config.FontSize : parseInt(height / 80)
- focus: true
-
- property bool leftleft: config.HaveFormBackground == "true" &&
- config.PartialBlur == "false" &&
- config.FormPosition == "left" &&
- config.BackgroundImageHAlignment == "left"
-
- property bool leftcenter: config.HaveFormBackground == "true" &&
- config.PartialBlur == "false" &&
- config.FormPosition == "left" &&
- config.BackgroundImageHAlignment == "center"
-
- property bool rightright: config.HaveFormBackground == "true" &&
- config.PartialBlur == "false" &&
- config.FormPosition == "right" &&
- config.BackgroundImageHAlignment == "right"
-
- property bool rightcenter: config.HaveFormBackground == "true" &&
- config.PartialBlur == "false" &&
- config.FormPosition == "right" &&
- config.BackgroundImageHAlignment == "center"
-
- Item {
- id: sizeHelper
-
- anchors.fill: parent
- height: parent.height
- width: parent.width
-
- Rectangle {
- id: tintLayer
- anchors.fill: parent
- width: parent.width
- height: parent.height
- color: "black"
- opacity: config.DimBackgroundImage
- z: 1
- }
-
- Rectangle {
- id: formBackground
- anchors.fill: form
- anchors.centerIn: form
- color: root.palette.window
- visible: config.HaveFormBackground == "true" ? true : false
- opacity: config.PartialBlur == "true" ? 0.3 : 1
- z: 1
- }
-
- LoginForm {
- id: form
-
- height: virtualKeyboard.state == "visible" ? parent.height - virtualKeyboard.implicitHeight : parent.height
- width: parent.width / 2.5
- anchors.horizontalCenter: config.FormPosition == "center" ? parent.horizontalCenter : undefined
- anchors.left: config.FormPosition == "left" ? parent.left : undefined
- anchors.right: config.FormPosition == "right" ? parent.right : undefined
- virtualKeyboardActive: virtualKeyboard.state == "visible" ? true : false
- z: 1
- }
-
- Button {
- id: vkb
- onClicked: virtualKeyboard.switchState()
- visible: virtualKeyboard.status == Loader.Ready && config.ForceHideVirtualKeyboardButton == "false"
- anchors.bottom: parent.bottom
- anchors.bottomMargin: implicitHeight
- anchors.horizontalCenter: form.horizontalCenter
- z: 1
- contentItem: Text {
- text: config.TranslateVirtualKeyboardButton || "Virtual Keyboard"
- color: parent.visualFocus ? palette.highlight : palette.text
- font.pointSize: root.font.pointSize * 0.8
- }
- background: Rectangle {
- id: vkbbg
- color: "transparent"
- }
- }
-
- Loader {
- id: virtualKeyboard
- source: "Components/VirtualKeyboard.qml"
- state: "hidden"
- property bool keyboardActive: item ? item.active : false
- onKeyboardActiveChanged: keyboardActive ? state = "visible" : state = "hidden"
- width: parent.width
- z: 1
- function switchState() { state = state == "hidden" ? "visible" : "hidden" }
- states: [
- State {
- name: "visible"
- PropertyChanges {
- target: form
- systemButtonVisibility: false
- clockVisibility: false
- }
- PropertyChanges {
- target: virtualKeyboard
- y: root.height - virtualKeyboard.height
- opacity: 1
- }
- },
- State {
- name: "hidden"
- PropertyChanges {
- target: virtualKeyboard
- y: root.height - root.height/4
- opacity: 0
- }
- }
- ]
- transitions: [
- Transition {
- from: "hidden"
- to: "visible"
- SequentialAnimation {
- ScriptAction {
- script: {
- virtualKeyboard.item.activated = true;
- Qt.inputMethod.show();
- }
- }
- ParallelAnimation {
- NumberAnimation {
- target: virtualKeyboard
- property: "y"
- duration: 100
- easing.type: Easing.OutQuad
- }
- OpacityAnimator {
- target: virtualKeyboard
- duration: 100
- easing.type: Easing.OutQuad
- }
- }
- }
- },
- Transition {
- from: "visible"
- to: "hidden"
- SequentialAnimation {
- ParallelAnimation {
- NumberAnimation {
- target: virtualKeyboard
- property: "y"
- duration: 100
- easing.type: Easing.InQuad
- }
- OpacityAnimator {
- target: virtualKeyboard
- duration: 100
- easing.type: Easing.InQuad
- }
- }
- ScriptAction {
- script: {
- Qt.inputMethod.hide();
- }
- }
- }
- }
- ]
- }
-
- Image {
- id: backgroundImage
-
- height: parent.height
- width: config.HaveFormBackground == "true" && config.FormPosition != "center" && config.PartialBlur != "true" ? parent.width - formBackground.width : parent.width
- anchors.left: leftleft ||
- leftcenter ?
- formBackground.right : undefined
-
- anchors.right: rightright ||
- rightcenter ?
- formBackground.left : undefined
-
- horizontalAlignment: config.BackgroundImageHAlignment == "left" ?
- Image.AlignLeft :
- config.BackgroundImageHAlignment == "right" ?
- Image.AlignRight : Image.AlignHCenter
-
- verticalAlignment: config.BackgroundImageVAlignment == "top" ?
- Image.AlignTop :
- config.BackgroundImageVAlignment == "bottom" ?
- Image.AlignBottom : Image.AlignVCenter
-
- source: config.background || config.Background
- fillMode: config.ScaleImageCropped == "true" ? Image.PreserveAspectCrop : Image.PreserveAspectFit
- asynchronous: true
- cache: true
- clip: true
- mipmap: true
- }
-
- MouseArea {
- anchors.fill: backgroundImage
- onClicked: parent.forceActiveFocus()
- }
-
- ShaderEffectSource {
- id: blurMask
-
- sourceItem: backgroundImage
- width: form.width
- height: parent.height
- anchors.centerIn: form
- sourceRect: Qt.rect(x,y,width,height)
- visible: config.FullBlur == "true" || config.PartialBlur == "true" ? true : false
- }
-
- GaussianBlur {
- id: blur
-
- height: parent.height
- width: config.FullBlur == "true" ? parent.width : form.width
- source: config.FullBlur == "true" ? backgroundImage : blurMask
- radius: config.BlurRadius
- samples: config.BlurRadius * 2 + 1
- cached: true
- anchors.centerIn: config.FullBlur == "true" ? parent : form
- visible: config.FullBlur == "true" || config.PartialBlur == "true" ? true : false
- }
- }
-}
diff --git a/usr/share/sddm/themes/moonarch-sddm/Previews/1.png b/usr/share/sddm/themes/moonarch-sddm/Previews/1.png
deleted file mode 100644
index cb2b6a9..0000000
Binary files a/usr/share/sddm/themes/moonarch-sddm/Previews/1.png and /dev/null differ
diff --git a/usr/share/sddm/themes/moonarch-sddm/Previews/2.png b/usr/share/sddm/themes/moonarch-sddm/Previews/2.png
deleted file mode 100644
index 93b8458..0000000
Binary files a/usr/share/sddm/themes/moonarch-sddm/Previews/2.png and /dev/null differ
diff --git a/usr/share/sddm/themes/moonarch-sddm/Previews/3.png b/usr/share/sddm/themes/moonarch-sddm/Previews/3.png
deleted file mode 100644
index 54a21aa..0000000
Binary files a/usr/share/sddm/themes/moonarch-sddm/Previews/3.png and /dev/null differ
diff --git a/usr/share/sddm/themes/moonarch-sddm/Previews/4.png b/usr/share/sddm/themes/moonarch-sddm/Previews/4.png
deleted file mode 100644
index 6e01864..0000000
Binary files a/usr/share/sddm/themes/moonarch-sddm/Previews/4.png and /dev/null differ
diff --git a/usr/share/sddm/themes/moonarch-sddm/Previews/5.png b/usr/share/sddm/themes/moonarch-sddm/Previews/5.png
deleted file mode 100644
index 3021501..0000000
Binary files a/usr/share/sddm/themes/moonarch-sddm/Previews/5.png and /dev/null differ
diff --git a/usr/share/sddm/themes/moonarch-sddm/README.md b/usr/share/sddm/themes/moonarch-sddm/README.md
deleted file mode 100644
index a2987de..0000000
--- a/usr/share/sddm/themes/moonarch-sddm/README.md
+++ /dev/null
@@ -1,62 +0,0 @@
-🗼 Simple SDDM Theme 2 - QT6 🗼
-
- This will be the SDDM version 2 theme to be installed in my Hyprland Scripts
-
-
-A Simple theme variant for the SDDM Login Manager
-
-
-Preview
-
-
-
-More Previews
-
-
-
-
-
-
-
-## Install
-> _Assumes that you've installed and configured SDDM correctly_ (if not [read more](https://wiki.archlinux.org/title/SDDM))
-
-> Please make sure you have the following dependencies installed:
-- [`For Arch Linux`]
-`qt6-5compat` `qt6-declarative` `qt6-svg` `sddm`
-
-- [`For Fedora Linux`]
-`qt6-qt5compat` `qt6-qtdeclarative` `qt6-qtsvg` `sddm`
-
-- [`For OpenSuse TW`]
-`qt6-qt5compat` `qt6-declarative` `qt6-svg` `sddm-qt6`
-
-## Configure
-
-Edit the or create if it does not exist `/etc/sddm.conf.d/theme.conf.user` (with any text editor with **raised** privileges), so that it looks like this:
-
-```bash
-sudo nano /etc/sddm.conf.d/theme.conf.user # use any text editor with raised privileges
----
-
-[Theme]
-Current=simple-sddm-2
- ```
-
-### Language and time format
-- By default, it is configured with 24H format. You can change to AM/PM variant by editing the theme.conf
-```bash
-sudo nano /usr/share/sddm/themes/simple-sddm-2/theme.conf # use any text editor with raised privileges
-```
-- `HourFormat="hh:mm AP` . Make sure to disable the above of this part
-
-### 🖼️ Default SDDM background
-- To change the default background, put desired image in the `/usr/share/sddm/themes/simple-sddm-2/Backgrounds/` folder and add the name of the image followed by its extension (`.jpg` or `.png`) in `theme.conf` file.
-
-- You can also customize it further if you wish in the `/usr/share/sddm/themes/simple-sddm-2/theme.conf`
-(blur, form position, etc).
-
-## Credits
-- Theme is based on [`LINK`](https://github.com/Keyitdev/sddm-astronaut-theme) by [**Keyitdev**](https://github.com/Keyitdev)
-
-
diff --git a/usr/share/sddm/themes/moonarch-sddm/metadata.desktop b/usr/share/sddm/themes/moonarch-sddm/metadata.desktop
deleted file mode 100644
index ee5c013..0000000
--- a/usr/share/sddm/themes/moonarch-sddm/metadata.desktop
+++ /dev/null
@@ -1,15 +0,0 @@
-[SddmGreeterTheme]
-Name=sddm-astronaut-theme
-Description=sddm-astronaut-theme
-Author=keyitdev
-License=GPL-3.0-or-later
-Type=sddm-theme
-Version=1.0
-Website=https://github.com/Keyitdev/sddm-astronaut-theme
-Screenshot=Previews/preview.png
-MainScript=Main.qml
-ConfigFile=theme.conf
-TranslationsDirectory=translations
-Theme-Id=sddm-astronaut-theme
-Theme-API=2.0
-QtVersion=6
diff --git a/usr/share/sddm/themes/moonarch-sddm/theme.conf b/usr/share/sddm/themes/moonarch-sddm/theme.conf
deleted file mode 100644
index 534153d..0000000
--- a/usr/share/sddm/themes/moonarch-sddm/theme.conf
+++ /dev/null
@@ -1,146 +0,0 @@
-[General]
-
-## Simple-SDDM2
-Background="Backgrounds/wave.png"
-## Path relative to the theme root directory. Most standard image file formats are allowed including support for transparency. (e.g. background.jpeg/illustration.GIF/Foto.png/undraw.svgz)
-
-DimBackgroundImage="0.2"
-## Double between 0 and 1 used for the alpha channel of a darkening overlay. Use to darken your background image on the fly.
-
-ScaleImageCropped="true"
-## Whether the image should be cropped when scaled proportionally. Setting this to false will fit the whole image instead, possibly leaving white space. This can be exploited beautifully with illustrations (try it with "undraw.svg" included in the theme).
-
-#ScreenWidth="1920"
-#ScreenHeight="1080"
-## Adjust to your resolution to help SDDM speed up on calculations
-
-## [Blur Settings]
-
-FullBlur="true"
-PartialBlur="false"
-## Enable or disable the blur effect; if HaveFormBackground is set to true then PartialBlur will trigger the BackgroundColor of the form element to be partially transparent and blend with the blur.
-
-BlurRadius="90"
-## Set the strength of the blur effect. Anything above 100 is pretty strong and might slow down the rendering time. 0 is like setting false for any blur.
-
-
-
-## [Design Customizations]
-
-HaveFormBackground="false"
-## Have a full opacity background color behind the form that takes slightly more than 1/3 of screen estate; if PartialBlur is set to true then HaveFormBackground will trigger the BackgroundColor of the form element to be partially transparent and blend with the blur.
-
-FormPosition="center"
-## Position of the form which takes roughly 1/3 of screen estate. Can be left, center or right.
-
-BackgroundImageHAlignment="right"
-## Horizontal position of the background picture relative to its visible area. Applies when ScaleImageCropped is set to false or when HaveFormBackground is set to true and FormPosition is either left or right. Can be left, center or right; defaults to center if none is passed.
-
-BackgroundImageVAlignment="bottom"
-## As before but for the vertical position of the background picture relative to its visible area.
-
-MainColor="#cdd6f4"
-## Used for all elements when not focused/hovered etc. Usually the best effect is achieved by having this be either white or a very dark grey like #444 (not black for smoother antialias)
-## Colors can be HEX or Qt names (e.g. red/salmon/blanchedalmond). See https://doc.qt.io/qt-5/qml-color.html
-
-AccentColor="#b4befe"
-## Used for elements in focus/hover/pressed. Should be contrasting to the background and the MainColor to achieve the best effect.
-
-OverrideTextFieldColor=""
-## The text color of the username & password when focused/pressed may become difficult to read depending on your color choices. Use this option to set it independently for legibility.
-
-BackgroundColor="#1e1e2e"
-## Used for the user and session selection background as well as for ScreenPadding and FormBackground when either is true. If PartialBlur and FormBackground are both enabled this color will blend with the blur effect.
-
-placeholderColor="#a6adc8"
-## Placholder text color. Example: username, password.
-
-IconColor="#bac2de"
-## System icon colors
-
-OverrideLoginButtonTextColor=""
-## The text of the login button may become difficult to read depending on your color choices. Use this option to set it independently for legibility.
-
-InterfaceShadowSize="5"
-## Integer used as multiplier. Size of the shadow behind the user and session selection background. Decrease or increase if it looks bad on your background. Initial render can be slow no values above 5-7.
-
-InterfaceShadowOpacity="0.2"
-## Double between 0 and 1. Alpha channel of the shadow behind the user and session selection background. Decrease or increase if it looks bad on your background.
-
-RoundCorners="10"
-## Integer in pixels. Radius of the input fields and the login button. Empty for square. Can cause bad antialiasing of the fields.
-
-ScreenPadding="0"
-## Integer in pixels. Increase or delete this to have a padding of color BackgroundColor all around your screen. This makes your login greeter appear as if it was a canvas. Cool!
-
-Font="JetBrainsMono Nerd Font"
-## If you want to choose a custom font it will have to be available to the X root user. See https://wiki.archlinux.org/index.php/fonts#Manual_installation
-
-FontSize=""
-## Only set a fixed value if fonts are way too small for your resolution. Preferrably kept empty.
-
-HideLoginButton="true"
-## Hides login button if set to true.
-
-
-## [Interface Behavior]
-
-ForceRightToLeft="false"
-## Revert the layout either because you would like the login to be on the right hand side or SDDM won't respect your language locale for some reason. This will reverse the current position of FormPosition if it is either left or right and in addition position some smaller elements on the right hand side of the form itself (also when FormPosition is set to center).
-
-ForceLastUser="true"
-## Have the last successfully logged in user appear automatically in the username field.
-
-ForcePasswordFocus="true"
-## Give automatic focus to the password field. Together with ForceLastUser this makes for the fastest login experience.
-
-ForceHideCompletePassword="true"
-## If you don't like to see any character at all not even while being entered set this to true.
-
-ForceHideVirtualKeyboardButton="false"
-## Do not show the button for the virtual keyboard at all. This will completely disable functionality for the virtual keyboard even if it is installed and activated in sddm.conf
-
-ForceHideSystemButtons="false"
-## Completely disable and hide any power buttons on the greeter.
-
-AllowEmptyPassword="false"
-## Enable login for users without a password. This is discouraged. Makes the login button always enabled.
-
-AllowBadUsernames="false"
-## Do not change this! Uppercase letters are generally not allowed in usernames. This option is only for systems that differ from this standard!
-
-
-
-## [Locale Settings]
-
-Locale=""
-## The time and date locale should usually be set in your system settings. Only hard set this if something is not working by default or you want a seperate locale setting in your login screen.
-
-HourFormat="HH:mm"
-## for AM/PM
-## HourFormat="hh:mm AP"
-## Defaults to Locale.ShortFormat - Accepts "long" or a custom string like "hh:mm A". See http://doc.qt.io/qt-5/qml-qtqml-date.html
-
-DateFormat="dddd, MMM d"
-## Defaults to Locale.LongFormat - Accepts "short" or a custom string like "dddd, d 'of' MMMM". See http://doc.qt.io/qt-5/qml-qtqml-date.html
-
-
-
-## [Translations]
-
-HeaderText=""
-## Header can be empty to not display any greeting at all. Keep it short.
-
-## SDDM may lack proper translation for every element. Suger defaults to SDDM translations. Please help translate SDDM as much as possible for your language: https://github.com/sddm/sddm/wiki/Localization. These are in order as they appear on screen.
-
-TranslatePlaceholderUsername=""
-TranslatePlaceholderPassword=""
-TranslateLogin=""
-TranslateLoginFailedWarning=""
-TranslateCapslockWarning=""
-TranslateSuspend=""
-TranslateHibernate=""
-TranslateReboot=""
-TranslateShutdown=""
-TranslateVirtualKeyboardButton=""
-## These don't necessarily need to translate anything. You can enter whatever you want here.