First Upload

This commit is contained in:
Sebastian Serfling
2025-09-23 14:52:55 +02:00
commit 554fc9879d
14 changed files with 157 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
(defwindow desktop-icons
:geometry (geometry
:x "50%"
:y "50%"
:anchor "top left"
:width "400px"
:height "120px")
:stacking "fg" ;; oder "bg", je nach Geschmack
(box
:orientation "h"
:halign "center"
:spacing 40
(button
:class "icon-btn"
:tooltip "Remmina"
:onclick "remmina"
(image :path "~/.config/eww/icons/remmina.png" :width 64 :height 64))
(button
:class "icon-btn"
:tooltip "Support (coming soon)"
:onclick "notify-send 'Support kommt später...'"
(image :path "~/.config/eww/icons/help.png" :width 64 :height 64))
(button
:class "icon-btn"
:tooltip "Reboot"
:onclick "systemctl reboot"
(image :path "~/.config/eww/icons/reboot.png" :width 64 :height 64))
)
)