removed unused scripts
This commit is contained in:
parent
034a8258d4
commit
86c0ceeaaa
@ -1,8 +0,0 @@
|
|||||||
Reddit wallpaper,$HOME/.local/share/scripts/set-reddit-bg.sh
|
|
||||||
Random wallpaper,$HOME/.local/share/scripts/random-bg.sh
|
|
||||||
Select wallpaper,$HOME/.local/share/scripts/select-bg.sh
|
|
||||||
Install Package,alacritty --class "floatme" -e "$XDG_DATA_HOME/scripts/pacman-install.sh"
|
|
||||||
Take screenshot,$XDG_DATA_HOME/scripts/take-selected-screenshot.sh
|
|
||||||
Share screenshot,$XDG_DATA_HOME/scripts/share-screenshot.sh
|
|
||||||
Upload last Steam screenshot,$XDG_DATA_HOME/scripts/upload-last-steam-screenshot.sh
|
|
||||||
Emoji,rofimoji --clipboarder xclip --typer xdotool
|
|
Can't render this file because it contains an unexpected character in line 4 and column 35.
|
@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
WORKINGDIR="$HOME/.config/rofi/"
|
|
||||||
MAP="$WORKINGDIR/cmd.csv"
|
|
||||||
|
|
||||||
cat "$MAP" \
|
|
||||||
| cut -d ',' -f 1 \
|
|
||||||
| rofi -dmenu -i -p "Quick " \
|
|
||||||
| head -n 1 \
|
|
||||||
| xargs -i --no-run-if-empty grep "{}" "$MAP" \
|
|
||||||
| cut -d ',' -f 2 \
|
|
||||||
| head -n 1 \
|
|
||||||
| xargs -i --no-run-if-empty /bin/bash -c "{}"
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
mpv --no-input-terminal --loop-file=inf "$2" --wid="$1" --panscan=1.0
|
|
@ -1,6 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
|
|
||||||
SCRIPT=$(readlink -f "$0")
|
|
||||||
SCRIPTPATH=$(dirname "$SCRIPT")
|
|
||||||
xwinwrap -fs -ov -ni -b -nf -- "$SCRIPTPATH/animated-wallpaper-mpv.sh" WID "$1"
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
set -e
|
|
||||||
|
|
||||||
if test -t 0; then
|
|
||||||
>&2 echo "Provide a file"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
xclip -i -selection "clipboard" < /dev/stdin
|
|
||||||
|
|
||||||
notify-send -u low "${1:-Copied}"
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
|||||||
#/usr/bin/env sh
|
|
||||||
set -e
|
|
||||||
|
|
||||||
DIR=${1:-$("pwd")}
|
|
||||||
SELECT=$(sxiv -N "floatme" -t -o "$DIR")
|
|
||||||
|
|
||||||
[[ -z "$SELECT" ]] && exit 0
|
|
||||||
|
|
||||||
COUNT=$(echo "$SELECT" | wc -l)
|
|
||||||
|
|
||||||
read -p "Remove these $COUNT item(s)? " -n 1 -r
|
|
||||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
|
||||||
then
|
|
||||||
while read -r line; do
|
|
||||||
rm $line
|
|
||||||
done <<< "$SELECT"
|
|
||||||
fi
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
wal -i $(readlink $XDG_CACHE_HOME/last-bg) -n
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user