mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 13:29:41 +00:00
ItsDrike
ac23da55c5
This configuration was simply copied from my old Arch Linux system. There are some issues that still need to be solved, namely with fonts and missing bitcoin price script, but it's mostly minor.
15 lines
288 B
Plaintext
15 lines
288 B
Plaintext
(defwidget bitcoin_module []
|
|
(eventbox
|
|
:onclick "~/.local/bin/scripts/cli/bitcoin | xargs -I_ ${EWW_CMD} update bitcoin=_"
|
|
:class "module bitcoin"
|
|
|
|
(box
|
|
:space-evenly false
|
|
|
|
(label
|
|
:class "icon"
|
|
:text "")
|
|
(label :text {bitcoin}))
|
|
)
|
|
)
|