85 lines
2.7 KiB
Bash
Executable file
85 lines
2.7 KiB
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
|
|
#// Check if wlogout is already running
|
|
|
|
if pgrep -x "wlogout" > /dev/null
|
|
then
|
|
pkill -x "wlogout"
|
|
exit 0
|
|
fi
|
|
|
|
|
|
#// set file variables
|
|
|
|
scrDir=`dirname "$(realpath "$0")"`
|
|
source $scrDir/globalcontrol.sh
|
|
[ -z "${1}" ] || wlogoutStyle="${1}"
|
|
wLayout="${confDir}/wlogout/layout_${wlogoutStyle}"
|
|
wlTmplt="${confDir}/wlogout/style_${wlogoutStyle}.css"
|
|
|
|
if [ ! -f "${wLayout}" ] || [ ! -f "${wlTmplt}" ] ; then
|
|
echo "ERROR: Config ${wlogoutStyle} not found..."
|
|
wlogoutStyle=1
|
|
wLayout="${confDir}/wlogout/layout_${wlogoutStyle}"
|
|
wlTmplt="${confDir}/wlogout/style_${wlogoutStyle}.css"
|
|
fi
|
|
|
|
|
|
#// detect monitor res
|
|
|
|
x_mon=$(hyprctl -j monitors | jq '.[] | select(.focused==true) | .width')
|
|
y_mon=$(hyprctl -j monitors | jq '.[] | select(.focused==true) | .height')
|
|
hypr_scale=$(hyprctl -j monitors | jq '.[] | select (.focused == true) | .scale' | sed 's/\.//')
|
|
|
|
|
|
#// scale config layout and style
|
|
|
|
case "${wlogoutStyle}" in
|
|
1) wlColms=6
|
|
export mgn=$(( y_mon * 28 / hypr_scale ))
|
|
export hvr=$(( y_mon * 23 / hypr_scale )) ;;
|
|
2) wlColms=2
|
|
export x_mgn=$(( x_mon * 35 / hypr_scale ))
|
|
export y_mgn=$(( y_mon * 25 / hypr_scale ))
|
|
export x_hvr=$(( x_mon * 32 / hypr_scale ))
|
|
export y_hvr=$(( y_mon * 20 / hypr_scale )) ;;
|
|
esac
|
|
|
|
|
|
#// scale font size
|
|
|
|
export fntSize=$(( y_mon * 2 / 100 ))
|
|
|
|
|
|
#// detect wallpaper brightness
|
|
|
|
[ -f "${cacheDir}/wall.dcol" ] && source "${cacheDir}/wall.dcol"
|
|
# Theme mode: detects the color-scheme set in hypr.theme and falls back if nothing is parsed.
|
|
if [ "${enableWallDcol}" -eq 0 ]; then
|
|
colorScheme="$({ grep -q "^[[:space:]]*\$COLOR[-_]SCHEME\s*=" "${hydeThemeDir}/hypr.theme" && grep "^[[:space:]]*\$COLOR[-_]SCHEME\s*=" "${hydeThemeDir}/hypr.theme" | cut -d '=' -f2 | sed 's/^[[:space:]]*//;s/[[:space:]]*$//' ;} ||
|
|
grep 'gsettings set org.gnome.desktop.interface color-scheme' "${hydeThemeDir}/hypr.theme" | awk -F "'" '{print $((NF - 1))}')"
|
|
colorScheme=${colorScheme:-$(gsettings get org.gnome.desktop.interface color-scheme)}
|
|
# should be declared explicitly so we can easily debug
|
|
grep -q "dark" <<< "${colorScheme}" && dcol_mode="dark"
|
|
grep -q "light" <<< "${colorScheme}" && dcol_mode="light"
|
|
[ -f "${hydeThemeDir}/theme.dcol" ] && source "${hydeThemeDir}/theme.dcol"
|
|
fi
|
|
[ "${dcol_mode}" == "dark" ] && export BtnCol="white" || export BtnCol="black"
|
|
|
|
|
|
#// eval hypr border radius
|
|
|
|
export active_rad=$(( hypr_border * 5 ))
|
|
export button_rad=$(( hypr_border * 8 ))
|
|
|
|
|
|
#// eval config files
|
|
|
|
wlStyle="$(envsubst < $wlTmplt)"
|
|
|
|
|
|
#// launch wlogout
|
|
|
|
wlogout -b "${wlColms}" -c 0 -r 0 -m 0 --layout "${wLayout}" --css <(echo "${wlStyle}") --protocol layer-shell
|
|
|