33 lines
796 B
Plaintext
33 lines
796 B
Plaintext
(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))
|
|
)
|
|
)
|