This commit is contained in:
Stephan Raabe 2024-05-02 15:59:08 +02:00
parent a86d7b405b
commit e99f976b65
6 changed files with 14 additions and 4 deletions

View File

@ -45,6 +45,7 @@ alias ml4w='~/dotfiles/apps/ML4W_Welcome-x86_64.AppImage'
alias ml4w-settings='~/dotfiles/apps/ML4W_Dotfiles_Settings-x86_64.AppImage'
alias ml4w-sidebar='~/dotfiles/eww/ml4w-sidebar/launch.sh'
alias ml4w-hyprland='~/dotfiles/apps/ML4W_Hyprland_Settings-x86_64.AppImage'
alias ml4w-diagnosis='~/dotfiles/scripts/diagnosis.sh'
# -----------------------------------------------------
# Window Managers

View File

@ -1 +1 @@
2.9RC3
2.9

View File

@ -10,6 +10,7 @@ https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.9
- Animations can be toggled (enabled/disabled) temporarily with SUPER + SHIFT + A
- Keyboard layout is part of the system information module of waybar
- nm-applet can be started from the ML4W Welcome App menu Settings/System
- New diagnosis features checks that essential command are available. Enter ml4w-diagnosis in a terminal or from the ML4W Welcome App
Version 2.8.4
https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.8.4

View File

@ -63,7 +63,7 @@
(defwidget close []
(box :class "winbox"
(button :tooltip "Logout" :style "background-image: url('../assets/window-close-symbolic.svg');" :class "closeicon" :valign "center" :halign "center" :onclick "../scripts/eww.sh &")
(button :tooltip "Close" :style "background-image: url('../assets/window-close-symbolic.svg');" :class "closeicon" :valign "center" :halign "center" :onclick "../scripts/eww.sh &")
)
)

View File

@ -3,7 +3,8 @@ clear
sleep 0.5
figlet "Diagnosis"
echo
echo "This script will check if some core packages are available on your system."
echo "This script will check that essential packages and "
echo "execution commands are available on your system."
echo
_commandExists() {
@ -27,10 +28,17 @@ _folderExists() {
_commandExists "rofi"
_commandExists "dunst"
_commandExists "waybar"
_commandExists "swww"
_commandExists "hyprpaper"
_commandExists "hyprlock"
_commandExists "hypridle"
_commandExists "wal"
_commandExists "gum"
_commandExists "wlogout"
_commandExists "wal"
_commandExists "swww"
_commandExists "eww"
_commandExists "magick"
_commandExists "figlet"
echo
echo "Press return to close the window"