New backup 2025-04-26 23:45:01
This commit is contained in:
parent
749ae16304
commit
a1064ce1a1
3 changed files with 10 additions and 4 deletions
|
@ -172,7 +172,12 @@ tooltip{
|
||||||
.notes {
|
.notes {
|
||||||
background-color: rgba($color0,0.5);
|
background-color: rgba($color0,0.5);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
button {
|
||||||
|
background-color: rgba($color9,0.5);
|
||||||
|
border-radius: 6px;
|
||||||
|
padding: 4px 8px;
|
||||||
|
margin: 4px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.shortcuts {
|
.shortcuts {
|
||||||
background-color: rgba($color0,0.5);
|
background-color: rgba($color0,0.5);
|
||||||
|
|
|
@ -19,8 +19,9 @@
|
||||||
:xalign 0
|
:xalign 0
|
||||||
:justify "left"
|
:justify "left"
|
||||||
:wrap false
|
:wrap false
|
||||||
:text "${replace(note.filepath,"${get_env("HOME")}/Documents/Notes",'')}aaaaaaaaa
|
:text "${replace(note.filepath,"${get_env("HOME")}/Documents/Notes/",'')}
|
||||||
test")
|
|
||||||
|
${formattime("${note.date}","%F %R")}")
|
||||||
))
|
))
|
||||||
; (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" : ""}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
find ~/Documents/Notes/ -type f -exec stat --printf '%y\t%n\n' {} + | sort -rk 1 | head -n 5 | column -ts $'\t' -n 'Notes' -N date,filepath -J
|
find ~/Documents/Notes/ -type f -exec stat --printf '%Y\t%n\n' {} + | sort -rk 1 | head -n 5 | column -ts $'\t' -n 'Notes' -N date,filepath -J
|
||||||
|
|
Loading…
Add table
Reference in a new issue