9 lines
133 B
Bash
Executable File
9 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
sxbm_orig "$@"
|
|
cd ~/.local/share/sxbm
|
|
git add bookmarks
|
|
git commit -m "Auto-update bookmarks on $(date)"
|
|
git push
|