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

@ -1,6 +1,8 @@
TODO TODO
---- ----
* change shell to /bin/zsh
* pass/otp setup * pass/otp setup
* mblaze * mblaze
* noise suppression * noise suppression

3
add.sh
View file

@ -15,6 +15,7 @@ for arg in $@; do
} }
cp -v "$arg" "${arg}.bak" cp -v "$arg" "${arg}.bak"
mkdir -vp "files/$(dirname "$file")"
mv -iv "$arg" "files/$file" mv -iv "$arg" "files/$file"
ln -vfs "files/$file" "$arg" ln -vfs "$(realpath "files/$file")" "$arg"
done done

Binary file not shown.

View file

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

View file

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

4
files/.vimrc Normal file
View file

@ -0,0 +1,4 @@
source ~/.exrc
syntax on
colorscheme lunaperche
set clipboard=unnamed

View file

@ -35,3 +35,4 @@ wayland-protocols
xcb-util-wm-devel xcb-util-wm-devel
xf86-video-intel xf86-video-intel
xtools xtools
zsh