New backup 2025-04-26 23:30:01

This commit is contained in:
Penelope Gwen 2025-04-26 23:30:01 -07:00
parent 0145d800b5
commit 749ae16304
2 changed files with 11 additions and 3 deletions

View file

@ -172,6 +172,7 @@ tooltip{
.notes { .notes {
background-color: rgba($color0,0.5); background-color: rgba($color0,0.5);
padding: 10px; padding: 10px;
} }
.shortcuts { .shortcuts {
background-color: rgba($color0,0.5); background-color: rgba($color0,0.5);

View file

@ -4,17 +4,24 @@
(box (box
:class "notes" :class "notes"
:orientation "v" :orientation "v"
:halign "left" :halign "baseline"
:width 300 :width 300
:height 125 :height 150
:space-evenly true :space-evenly true
; "${json.condition} ${json.icon}" ; "${json.condition} ${json.icon}"
; "${json.current_temp}°F  / ${json.humidity}% " ; "${json.current_temp}°F  / ${json.humidity}% "
; " ${json.max_temp}°F  ${json.min_temp}°F" ; " ${json.max_temp}°F  ${json.min_temp}°F"
; " ${json.updated}")) ; " ${json.updated}"))
"Notes"
(for note in json (for note in json
(button :onclick "kate -n '${note.filepath}'" (button :onclick "kate -n '${note.filepath}'"
"${replace(note.filepath,"${get_env("HOME")}/Documents/Notes",'')}")) (label
:xalign 0
:justify "left"
:wrap false
:text "${replace(note.filepath,"${get_env("HOME")}/Documents/Notes",'')}aaaaaaaaa
test")
))
; (button :onclick {(device.connected == "yes") ? 'bluetoothctl disconnect "${device.address}"' : 'bluetoothctl connect "${device.address}"'} ; (button :onclick {(device.connected == "yes") ? 'bluetoothctl disconnect "${device.address}"' : 'bluetoothctl connect "${device.address}"'}
; :class {(device.connected == "yes") ? "active" : ""} ; :class {(device.connected == "yes") ? "active" : ""}
; "${device.icon}")) )) ; "${device.icon}")) ))