mirror of
https://github.com/ksyasuda/rice.git
synced 2025-12-06 14:53:39 -08:00
updates
This commit is contained in:
25
eww/scripts/open_folders
Executable file
25
eww/scripts/open_folders
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user