mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-24 21:42:51 -05:00
* Adding a way to use the start-hyprland wrapper when it's needed from Hyprland 0.53 it's recommended because offers more security if happens a fail * Deleting unnecessary things and doing verifications * fix pre-commit * Changing to not depend on hyprctl to obtain version and avoid posible problems --------- Co-authored-by: bbedward <bbedward@gmail.com>
16 lines
479 B
Bash
Executable File
16 lines
479 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export XDG_SESSION_TYPE=wayland
|
|
export QT_QPA_PLATFORM=wayland
|
|
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
|
|
export EGL_PLATFORM=gbm
|
|
CURRENT_VERSION=$(hyprland --version | grep "Tag:" | awk '{print $2}' | tr -d 'v,')
|
|
|
|
MINIMUM_VERSION="0.53.0"
|
|
|
|
if [ "$(printf '%s\n%s' "$MINIMUM_VERSION" "$CURRENT_VERSION" | sort -V | head -n1)" = "$MINIMUM_VERSION" ]; then
|
|
exec start-hyprland -- -c /etc/greetd/dms-hypr.conf
|
|
else
|
|
exec Hyprland -c /etc/greetd/dms-hypr.conf
|
|
fi
|