37 lines
1000 B
Plaintext
37 lines
1000 B
Plaintext
(defwindow desktop-icons
|
|
:geometry (geometry
|
|
:x "50%"
|
|
:y "50%"
|
|
:anchor "top left"
|
|
:width "500px"
|
|
:height "150px")
|
|
:stacking "fg"
|
|
(box
|
|
:orientation "h"
|
|
:halign "center"
|
|
:spacing 40
|
|
|
|
;; Remmina
|
|
(button
|
|
:class "icon-btn"
|
|
:onclick "remmina"
|
|
(box :orientation "v" :halign "center" :valign "center" :spacing 0
|
|
(label :class "icon" :text "")
|
|
(label :class "icon-text" :text "Remote Desktop")))
|
|
|
|
;; Support
|
|
(button
|
|
:class "icon-btn"
|
|
:onclick "notify-send 'Support kommt später...'"
|
|
(box :orientation "v" :halign "center" :valign "center"
|
|
(label :class "icon" :text "")
|
|
(label :class "icon-text" :text "Stines Support")))
|
|
|
|
;; Reboot
|
|
(button
|
|
:class "icon-btn"
|
|
:onclick "systemctl reboot"
|
|
(box :orientation "v" :halign "center" :valign "center" :spacing 0
|
|
(label :class "icon" :text "")
|
|
(label :class "icon-text" :text "Neustarten")))))
|