mirror of
https://github.com/ksyasuda/rice.git
synced 2024-10-28 09:04:10 -07:00
26 lines
662 B
Bash
Executable File
26 lines
662 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Open folders in thunar
|
|
FILE="$HOME/.cache/eww_launch.xyz"
|
|
EWW="$HOME/.bin/eww"
|
|
|
|
if [[ "$1" == "--dl" ]]; then
|
|
${EWW} close-all && rm -rf "$FILE" && thunar ~/Downloads &
|
|
|
|
elif [[ "$1" == "--docs" ]]; then
|
|
${EWW} close-all && rm -rf "$FILE" && thunar ~/Documents &
|
|
|
|
elif [[ "$1" == "--music" ]]; then
|
|
${EWW} close-all && rm -rf "$FILE" && thunar ~/Music &
|
|
|
|
elif [[ "$1" == "--pics" ]]; then
|
|
${EWW} close-all && rm -rf "$FILE" && thunar ~/Pictures &
|
|
|
|
elif [[ "$1" == "--cfg" ]]; then
|
|
${EWW} close-all && rm -rf "$FILE" && thunar ~/.config &
|
|
|
|
elif [[ "$1" == "--local" ]]; then
|
|
${EWW} close-all && rm -rf "$FILE" && thunar ~/.local/share &
|
|
|
|
fi
|