This commit is contained in:
kento2 2026-01-28 22:40:55 +01:00
parent 7d8a3a430d
commit 3030258b6e
7 changed files with 11 additions and 3 deletions

View file

@ -7,5 +7,5 @@ d="$(date -I)"
grep "$d" "$JOURNAL" || printf "%s\n" "$d" > "$tmp"
nvi "$tmp"
(echo; cat "$tmp" | tee -a "$JOURNAL") && rm "$tmp"
(printf "\n"; cat "$tmp" | tee -a "$JOURNAL") && rm "$tmp"
tail "$JOURNAL"

View file

@ -3,4 +3,4 @@
b=/usr/bin/firefox
test -e /usr/bin/librewolf && b=/usr/bin/librewolf
exec cage -d "$b" $@
exec cage -d -- "$b" $@