diff --git a/.install/packages/general-packages.sh b/.install/packages/general-packages.sh index 4d5a215..027b799 100644 --- a/.install/packages/general-packages.sh +++ b/.install/packages/general-packages.sh @@ -7,7 +7,6 @@ packagesPacman=( "wget" "unzip" "alacritty" - "rofi" "chromium" "dunst" "starship" @@ -59,4 +58,5 @@ packagesYay=( "bibata-cursor-theme" "trizen" "pacseek" + "rofi-lbonn-wayland" ); diff --git a/.install/remove.sh b/.install/remove.sh index bb30eb6..d4d85c2 100755 --- a/.install/remove.sh +++ b/.install/remove.sh @@ -1,5 +1,12 @@ #!/bin/bash +# Remove Rofi +if [[ $(_isInstalledPacman "rofi") == 0 ]]; then + sudo pacman --noconfirm -Rns rofi + echo ":: rofi removed" + echo +fi + # Remove Swayidle if [[ $(_isInstalledPacman "swayidle") == 0 ]]; then sudo pacman --noconfirm -Rns swayidle diff --git a/.version/name b/.version/name index 60c8344..5cfdfee 100644 --- a/.version/name +++ b/.version/name @@ -1 +1 @@ -2.8.3.1 \ No newline at end of file +2.8.3.2 \ No newline at end of file diff --git a/CHANGELOG b/CHANGELOG index bbba57d..3b8cf13 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +Version 2.8.3.2 +https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.8.3.2 +-------------------------------------------------------- +- Replace rofi with rofi-lbonn-wayland to get rofi wayland support + Version 2.8.3.1 https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.8.3.1 -------------------------------------------------------- diff --git a/apps/ML4W_Welcome-x86_64.AppImage b/apps/ML4W_Welcome-x86_64.AppImage index 1029a5b..59f6e2e 100755 Binary files a/apps/ML4W_Welcome-x86_64.AppImage and b/apps/ML4W_Welcome-x86_64.AppImage differ diff --git a/hypr/scripts/wallpaper.sh b/hypr/scripts/wallpaper.sh index 60b041b..7ae003c 100755 --- a/hypr/scripts/wallpaper.sh +++ b/hypr/scripts/wallpaper.sh @@ -49,7 +49,7 @@ case $1 in selected=$( find "$HOME/wallpaper" -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" \) -exec basename {} \; | sort -R | while read rfile do echo -en "$rfile\x00icon\x1f$HOME/wallpaper/${rfile}\n" - done | rofi -dmenu -replace -config ~/dotfiles/rofi/config-wallpaper.rasi) + done | $(sleep 0.2; rofi -dmenu -replace -config ~/dotfiles/rofi/config-wallpaper.rasi)) if [ ! "$selected" ]; then echo "No wallpaper selected" exit diff --git a/waybar/themeswitcher.sh b/waybar/themeswitcher.sh index 69ba415..ccb77d6 100755 --- a/waybar/themeswitcher.sh +++ b/waybar/themeswitcher.sh @@ -46,7 +46,7 @@ done # Show rofi dialog # ----------------------------------------------------- listNames=${listNames::-2} -choice=$(echo -e "$listNames" | rofi -dmenu -i -replace -config ~/dotfiles/rofi/config-themes.rasi -no-show-icons -width 30 -p "Themes" -format i) +choice=$(echo -e "$listNames" | $(sleep 0.2; rofi -dmenu -replace -config ~/dotfiles/rofi/config-themes.rasi -no-show-icons -width 30 -p "Themes" -format i)) # ----------------------------------------------------- # Set new theme by writing the theme information to ~/.cache/.themestyle.sh