diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2025-04-02 16:10:16 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2025-04-02 16:10:16 -0400 |
commit | 2ceb1116a3dcb9471d426d57a1a76b6a1a25fa6c (patch) | |
tree | fc97e434fdc5b65d60e2be610e46efc9633a5437 /.local/bin/dropbox-restore | |
parent | 4ccdb6fb1f53bc6c799ece8c2f03a0fede093acd (diff) |
Diffstat (limited to '.local/bin/dropbox-restore')
-rwxr-xr-x | .local/bin/dropbox-restore | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/dropbox-restore b/.local/bin/dropbox-restore index 3c1fcc7..54157d4 100755 --- a/.local/bin/dropbox-restore +++ b/.local/bin/dropbox-restore @@ -19,13 +19,13 @@ else exit 1 fi -excluded_files=$(dropbox-cli exclude list | awk '{print $1}' | sed 's/\/$//') +excluded_files=$(maestral excluded list) if [ -z "$excluded_files" ]; then notify-send -a " Dropbox" "No files are excluded in this directory." exit 1 fi -echo "$excluded_files" | dmenu -w "$(xdotool getactivewindow)" -p " Select a file to restore:" | while read -r file; do - dropbox-cli exclude remove "$file" +echo "$excluded_files" | tofi -p " Select a file to restore:" | while read -r file; do + maestral excluded remove "$file" done |