Removed unneeded scripts.
This commit is contained in:
parent
23b918fbba
commit
b3bdb07ee8
@ -1,7 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
source $HOME/.config/dmenu/config
|
|
||||||
|
|
||||||
word="$(printf '\n' | $DMENU -p "Enter Word")"
|
|
||||||
|
|
||||||
dym -c $word | $DMENU -p "Select spelling" | xclip -selection clipboard
|
|
@ -1,34 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# script to download a file from that has it's link in clipboard
|
|
||||||
|
|
||||||
source $HOME/.config/dmenu/config
|
|
||||||
|
|
||||||
# a functions that list all everything in a directory and gives back the chosen one
|
|
||||||
choice (){
|
|
||||||
(ls -1 -a | $DMENU -l 30 -p "Choose where to download")
|
|
||||||
}
|
|
||||||
|
|
||||||
# first choice
|
|
||||||
dir=$(choice)
|
|
||||||
|
|
||||||
# while the coice is not a file do what is inside
|
|
||||||
while [ "$dir" != "Here" ]
|
|
||||||
do
|
|
||||||
# first we check if it is a single dot and if it we download there
|
|
||||||
[ "$dir" = "." ] && break
|
|
||||||
|
|
||||||
# if dir is empty we exit
|
|
||||||
[ -z "$dir" ] && exit
|
|
||||||
|
|
||||||
# if all checks are negative we change into the directory
|
|
||||||
cd "$dir"
|
|
||||||
|
|
||||||
# doing a new check
|
|
||||||
dir=$(choice)
|
|
||||||
done
|
|
||||||
|
|
||||||
# download the file
|
|
||||||
quick-notify "Dmenu downloader" "Started downloading a file"
|
|
||||||
aria2c -j 16 -s 16 -x 16 -k 5M --file-allocation=none "$(xclip -o)"
|
|
||||||
quick-notify "Dmenu downloader" "Downloading finished"
|
|
Loading…
Reference in New Issue
Block a user