|
|
|
|
@ -1,35 +1,30 @@
|
|
|
|
|
#!/bin/bash |
|
|
|
|
|
|
|
|
|
# WALLPAPERS PATH |
|
|
|
|
DIR=$HOME/Pictures/wallpapers |
|
|
|
|
|
|
|
|
|
# Transition config (type swww img --help for more settings |
|
|
|
|
# Transition config |
|
|
|
|
FPS=30 |
|
|
|
|
TYPE="simple" |
|
|
|
|
DURATION=3 |
|
|
|
|
|
|
|
|
|
SWWW_PARAMS="--transition-fps $FPS --transition-type $TYPE --transition-duration $DURATION" |
|
|
|
|
|
|
|
|
|
PICS=($(ls ${DIR} | grep -e ".jpg$" -e ".jpeg$" -e ".png$" -e ".gif$")) |
|
|
|
|
#PICS=($(find ${DIR} -type f \( -name "*.jpg" -o -name "*.jpeg" -o -name "*.png" \))) |
|
|
|
|
|
|
|
|
|
RANDOM_PIC=${PICS[ $RANDOM % ${#PICS[@]} ]} |
|
|
|
|
RANDOM_PIC_NAME="${#PICS[@]}. random" |
|
|
|
|
|
|
|
|
|
# to check if swaybg is running |
|
|
|
|
if [[ $(pidof swaybg) ]]; then |
|
|
|
|
# Check if swaybg is running |
|
|
|
|
if pidof swaybg > /dev/null; then |
|
|
|
|
pkill swaybg |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
## Rofi Command |
|
|
|
|
# Retrieve image files |
|
|
|
|
PICS=($(ls "${DIR}" | grep -E ".jpg$|.jpeg$|.png$|.gif$")) |
|
|
|
|
RANDOM_PIC="${PICS[$((RANDOM % ${#PICS[@]}))]}" |
|
|
|
|
RANDOM_PIC_NAME="${#PICS[@]}. random" |
|
|
|
|
|
|
|
|
|
# Rofi command |
|
|
|
|
rofi_command="rofi -dmenu -config ~/.config/rofi/config-short.rasi" |
|
|
|
|
|
|
|
|
|
menu() { |
|
|
|
|
# Here we are looping in the PICS array that is composed of all images in the $DIR folder |
|
|
|
|
for i in ${!PICS[@]}; do |
|
|
|
|
# keeping the .gif to make sue you know it is animated |
|
|
|
|
if [[ -z $(echo ${PICS[$i]} | grep .gif$) ]]; then |
|
|
|
|
printf "$i. $(echo ${PICS[$i]} | cut -d. -f1)\n" # n°. <name_of_file_without_identifier> |
|
|
|
|
for i in "${!PICS[@]}"; do |
|
|
|
|
# Displaying .gif to indicate animated images |
|
|
|
|
if [[ -z $(echo "${PICS[$i]}" | grep .gif$) ]]; then |
|
|
|
|
printf "$i. $(echo "${PICS[$i]}" | cut -d. -f1)\n" |
|
|
|
|
else |
|
|
|
|
printf "$i. ${PICS[$i]}\n" |
|
|
|
|
fi |
|
|
|
|
@ -43,32 +38,28 @@ swww query || swww init
|
|
|
|
|
main() { |
|
|
|
|
choice=$(menu | ${rofi_command}) |
|
|
|
|
|
|
|
|
|
# no choice case |
|
|
|
|
if [[ -z $choice ]]; then return; fi |
|
|
|
|
# No choice case |
|
|
|
|
if [[ -z $choice ]]; then |
|
|
|
|
exit 0 |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
# random choice case |
|
|
|
|
# Random choice case |
|
|
|
|
if [ "$choice" = "$RANDOM_PIC_NAME" ]; then |
|
|
|
|
swww img ${DIR}/${RANDOM_PIC} $SWWW_PARAMS |
|
|
|
|
return |
|
|
|
|
swww img "${DIR}/${RANDOM_PIC}" $SWWW_PARAMS |
|
|
|
|
exit 0 |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
pic_index=$(echo $choice | cut -d. -f1) |
|
|
|
|
swww img ${DIR}/${PICS[$pic_index]} $SWWW_PARAMS |
|
|
|
|
pic_index=$(echo "$choice" | cut -d. -f1) |
|
|
|
|
swww img "${DIR}/${PICS[$pic_index]}" $SWWW_PARAMS |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# Check if rofi is already running |
|
|
|
|
if pidof rofi > /dev/null; then |
|
|
|
|
pkill rofi |
|
|
|
|
exit 0 |
|
|
|
|
else |
|
|
|
|
main |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
exec $HOME/.config/hypr/scripts/PywalSwww.sh & |
|
|
|
|
|
|
|
|
|
exec $HOME/.config/hypr/scripts/Refresh.sh |
|
|
|
|
main |
|
|
|
|
|
|
|
|
|
# Uncomment to launch something if a choice was made |
|
|
|
|
# if [[ -n "$choice" ]]; then |
|
|
|
|
# Restart Waybar |
|
|
|
|
# fi |
|
|
|
|
$HOME/.config/hypr/scripts/PywalSwww.sh & |
|
|
|
|
$HOME/.config/hypr/scripts/Refresh.sh |
|
|
|
|
|