From 04c1f41a1671957ab0beffab8a4647f3b34486b1 Mon Sep 17 00:00:00 2001 From: ray Date: Wed, 1 Apr 2020 15:59:15 +0100 Subject: [PATCH 1/2] update README --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1fc783e..38bb062 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,6 @@ Useful utility scripts. `install.sh` -- install all files in `./src/` to install directory (`/usr/local/bin/`). -`install.sh -o` -- overwrite pre-existing files in destination directory. - `install.sh -u` -- uninstall all files in `./src/` from install directory. ### Dependencies @@ -16,10 +14,14 @@ Useful utility scripts. | Script | Comment | |---|---| -|date-show|Show a time and date window.| +|date-show|Show a time and date notification.| |newbash ["command"]|Create executable `bash` script. Optionally add `command`.| |newsh ["command"]|Create executable `sh` script. Optionally add `command`.| |pam-say |Tells Pamela to say something.| |qutesesh|Open a Qutebrowser session.| -|window-select|Use Dmenu to select from all windows.| +|window-select|Select a window | +## TODO + +* Rename `date-show` to something more general. +* Use installer to create symbolic links instead of copying files. From 64abacbd58dd87cac1fec22fdc2828e63c6f5182 Mon Sep 17 00:00:00 2001 From: ray Date: Wed, 1 Apr 2020 16:00:20 +0100 Subject: [PATCH 2/2] remove comment --- install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/install.sh b/install.sh index 77e422d..d9d0164 100755 --- a/install.sh +++ b/install.sh @@ -38,7 +38,6 @@ for _file in ./src/* ; do echo "file present - skipping: $_file" fi elif [ $_uninstall -eq 1 ] ; then - # WARNING - need to ensure $_filename is not empty (/usr/local/bin will be deleted) if [ -n "$_destination" ] ; then echo "uninstalling: $_destination" sudo rm "$_install_dir$_destination"