diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2022-08-12 07:20:44 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2022-08-12 07:20:44 +0530 |
commit | 937b269967f2ef0ac379cb8cd1d787cc91426d12 (patch) | |
tree | aba6f183e06bf6d0e9e4a56f84dad90977281ba6 /.scripts/sscp | |
parent | c87e60e7e9f39e33dce2144d8a855f47358b84a2 (diff) |
specifying bash for non-posix compliant scripts+correcting other scripts
Diffstat (limited to '.scripts/sscp')
-rwxr-xr-x | .scripts/sscp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.scripts/sscp b/.scripts/sscp index ffe1701..e6760be 100755 --- a/.scripts/sscp +++ b/.scripts/sscp @@ -1,5 +1,5 @@ #!/bin/sh -latestss=$(ls -t $HOME/pix/Screenshots/ | head -n5 | dmenu -l 5) +latestss=$(ls -t $HOME/pix/Screenshots/ | head -n10 | dmenu -l 10) xclip -selection clipboard -t image/png -i $HOME/pix/Screenshots/$latestss |