Add new scripts

Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
Severin Kaderli 2019-02-25 15:44:33 +01:00
parent 7721996115
commit 50042dc9c0
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
11 changed files with 95 additions and 35 deletions

19
system/.local/bin/sync_notes.sh Executable file
View file

@ -0,0 +1,19 @@
#!/bin/bash
#
# SCRIPT NAME:
# sync_notes.sh
#
# AUTHOR:
# Severin Kaderli <severin.kaderli@gmail.com>
#
# DESCRIPTION:
# Sync notes in ~/Notes using git
#
# USAGE:
# ./sync_notes.sh
# Set custom wineprefix
cd "/home/severin/Notes"
git pull
git add --all
git commit -s -m "Update notes"
git push origin master