i3blocks, new nfrc script

This commit is contained in:
2025-04-01 00:38:10 +03:00
parent 616e8e4441
commit e9305858a5
8 changed files with 210 additions and 94 deletions

11
bin/daily Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
year=$(date +%Y)
month=$(date +%m)
day=$(date +%d)
folder="$HOME/docs/daily/$year"
note="$folder/$month.$day.md"
mkdir -p $folder
[ ! -f "$note" ] && echo "# $year.$month.$day" > "$note"
nvim $note