personal_scripts

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 5c0b7ddddf6993a31e57022df33acfbc3e866ef8
parent cd17e9f43adcb0d3f901caabb2cbb806b704d7b0
Author: mrgrouse <mrgrouse@mrgrouse.com>
Date:   Fri,  9 Aug 2024 22:31:12 -0400

wall.sh: fix ssh username

Diffstat:
Mwall.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/wall.sh b/wall.sh @@ -2,10 +2,10 @@ [ -z "$XDG_PICTURES" ] && XDG_PICTURES=$HOME/Pictures case $1 in push) - rsync -urv $XDG_PICTURES/ mrgrouse.com:Pictures + rsync -urv $XDG_PICTURES/ tetraonini@mrgrouse.com:Pictures ;; pull) - rsync -urv mrgrouse.com:Pictures/ $XDG_PICTURES + rsync -urv tetraonini@mrgrouse.com:Pictures/ $XDG_PICTURES ;; *) echo "Not a real argument :clown_face:"