Files
illogical-impulse/early/.config/eww/modules/user.yuck
T
2024-02-22 15:35:06 +07:00

16 lines
426 B
Plaintext
Executable File

(defwidget user []
(box
:space-evenly false
:orientation "h"
:style "padding-left: 28px; padding-right: 22px;"
(label
:class "username"
:style "margin-right: 5px;"
:text "${username == "" ? username_default : username}"
)
(box
:class "userpic"
:style "background-image: url('/var/lib/AccountsService/icons/${username == "" ? username_default : username}');"
)
)
)