From 84b57e8ab2fd8e05bd1c572c44f250199e1d40d4 Mon Sep 17 00:00:00 2001
From: tavo <tavo@tavo.one>
Date: Tue, 20 May 2025 00:07:55 -0600
Subject: [PATCH] test

---
 shell/gui.sh | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/shell/gui.sh b/shell/gui.sh
index 23c921a..e2158de 100644
--- a/shell/gui.sh
+++ b/shell/gui.sh
@@ -1,11 +1,14 @@
 #!/bin/sh
 
 if [ "$(tty)" = "/dev/tty1" ] ; then
-    sleep 0.5
-    amixer &
-    XDG_SESSION_TYPE=x11 GDK_BACKEND=x11 exec startx
-    #exec sway
-elif [ "$(tty)" = "/dev/tty2" ] ; then
-    sleep 0.5
+    ## KDE WAYLAND
     exec /usr/lib/plasma-dbus-run-session-if-needed /usr/bin/startplasma-wayland
+
+    ## DWM
+    #sleep 0.5
+    #amixer &
+    #XDG_SESSION_TYPE=x11 GDK_BACKEND=x11 exec startx
+
+    ## SWAY
+    #exec sway
 fi