Remove n and scr
Jes Olson jolson@digitalocean.com
Mon, 25 Oct 2021 10:43:05 -0500
D
bin/n
@@ -1,8 +0,0 @@
-#!/bin/sh -# -# Open notes file & take notes - -mkdir /tmp/notelock 2> /dev/null || exit 1 -notefile="$HOME/Sync/notes.md" -nvim "+normal G" '+:set autoread' '+ au CursorHold,CursorHoldI * checktime' "$notefile" -rmdir /tmp/notelock
D
bin/scr
@@ -1,13 +0,0 @@
-#!/bin/sh -# -# Take a screenshot - -scr_dir=~/pix/screenshots - -date=$(date +%F) -time=$(date +%I-%M-%S) -file=$scr_dir/$date/$date-$time.jpg - -mkdir -p "$scr_dir/$date" -import -window root "$file" -cp -f "$file" "$scr_dir/current.jpg"