my dotz
2
fork

Configure Feed

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

replace jsync with syncthing

j3s 0526c62c 9b81391b

-21
-10
bin/bedtime
··· 1 - #!/bin/sh -e 2 - # 3 - # Plan tomorrow's day 4 - 5 - notefile="$HOME/drop/notes.md" 6 - printf '\n' >> "$notefile" 7 - date +"%Y-%m-%d" >> "$notefile" 8 - printf -- "----------------" >> "$notefile" 9 - vim "+normal Go" +startinsert "$notefile" 10 - jsync
-11
bin/jsync
··· 1 - #!/bin/sh -e 2 - 3 - homedir="$HOME/drop" 4 - if ! [ -d "$homedir" ]; then 5 - git clone j3s@gibson:drop "$homedir" 6 - fi 7 - cd "$homedir" 8 - git pull 9 - git add --all 10 - git commit -m "$(date +%s)" 11 - git push