my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove n and scr

-21
-8
bin/n
··· 1 - #!/bin/sh 2 - # 3 - # Open notes file & take notes 4 - 5 - mkdir /tmp/notelock 2> /dev/null || exit 1 6 - notefile="$HOME/Sync/notes.md" 7 - nvim "+normal G" '+:set autoread' '+ au CursorHold,CursorHoldI * checktime' "$notefile" 8 - rmdir /tmp/notelock
-13
bin/scr
··· 1 - #!/bin/sh 2 - # 3 - # Take a screenshot 4 - 5 - scr_dir=~/pix/screenshots 6 - 7 - date=$(date +%F) 8 - time=$(date +%I-%M-%S) 9 - file=$scr_dir/$date/$date-$time.jpg 10 - 11 - mkdir -p "$scr_dir/$date" 12 - import -window root "$file" 13 - cp -f "$file" "$scr_dir/current.jpg"