diff options
author | Guangxiong Lin <[email protected]> | 2023-12-31 12:47:22 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2023-12-31 12:48:31 +0800 |
commit | 6ebd2799984879e3520d1421cff4e8c0792c4758 (patch) | |
tree | fca740a4a51f2cdc833bab0e4e5e9cb7b88ff74e | |
parent | 340cefd405d2abf78837f25ebafdcf284f21bf47 (diff) | |
download | navi-cheats-6ebd2799984879e3520d1421cff4e8c0792c4758.tar.gz navi-cheats-6ebd2799984879e3520d1421cff4e8c0792c4758.tar.bz2 navi-cheats-6ebd2799984879e3520d1421cff4e8c0792c4758.zip |
Update scripts
-rw-r--r-- | git.cheat | 3 | ||||
-rw-r--r-- | linux.cheat | 4 | ||||
-rw-r--r-- | noteutil.cheat | 4 |
3 files changed, 9 insertions, 2 deletions
@@ -12,5 +12,8 @@ git checkout <branch> # Delete a branch git branch -d <branch> +# Get the remote url of origin +git remote get-url origin + $ commit_id: git log --pretty=reference --- --column 1 --delimiter '\s' $ branch: git branch | awk '{print $NF}' diff --git a/linux.cheat b/linux.cheat new file mode 100644 index 0000000..5d82a82 --- /dev/null +++ b/linux.cheat @@ -0,0 +1,4 @@ +% linux + +# Suspend and lock the screen +systemctl suspend && swaylock diff --git a/noteutil.cheat b/noteutil.cheat index 9f20b19..a37ccb1 100644 --- a/noteutil.cheat +++ b/noteutil.cheat @@ -1,10 +1,10 @@ % noteutil # Generate weekly journal by template -noteutil template weekly -o <weekly_journal> +[ ! -f <weekly_journal> ] && noteutil template weekly -o <weekly_journal> # Generate monthly journal by template -noteutil template monthly -o <monthly_journal> +[ ! -f <monthly_journal> ] && noteutil template monthly -o <monthly_journal> $ weekly_journal: noteutil journal --period weekly --date today $ monthly_journal: noteutil journal --period monthly --date today |