dotfiles

personal configuration files and scripts
git clone https://tongong.net/git/dotfiles.git
Log | Files | Refs | README

commit c46dd89dad447cc966576c71f1514e72fdbd137b
parent 95357d0518db47463e43ef294f1b7a7055511a74
Author: tongong <tongong@gmx.net>
Date:   Mon, 26 Jul 2021 10:10:07 +0200

[bashrc] removed debug echos

Diffstat:
Mbashrc | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/bashrc b/bashrc @@ -55,11 +55,9 @@ function drop() { uri="$(dragon-drag-and-drop --target --and-exit)" if [[ "$uri" == "file://"* ]]; then - echo sees # filenames are not allowed to be longer than 999999 # i don't know how to make a substring expansion till the end uri=${uri:7:999999} - echo "$uri" sel="$(echo -e "copy\nmove" | dmenu -l 10)" [[ "$sel" == copy ]] && cp "$uri" . [[ "$sel" == move ]] && mv "$uri" .