diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/rupload | 5 | ||||
-rwxr-xr-x | bin/rws | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/bin/rupload b/bin/rupload index 74c943c..b0cd640 100755 --- a/bin/rupload +++ b/bin/rupload @@ -90,7 +90,10 @@ while exists_already "$rname"; do rname="_$rname" done -printf 'uploading to %s\n' "$rname" >&2 +if [ "$printurl" -eq 0 ]; then + printf 'uploading to %s\n' "$rname" >&2 +fi + if [ "$dry_run" -eq 1 ]; then echo dryrun, not uploading anything tidy_tempfile @@ -9,8 +9,6 @@ WSD=$XDG_RUNTIME_DIR/ws mkdir -p $WSD - - wslist () { # list workspaces, most-recently-used first swaymsg -t get_workspaces | jq -rc '.[] | .name' | while read wsn; do |