Browse Source

updated wlogout

pull/57/head
JaKooLit 2 years ago
parent
commit
d78ea071b2
  1. 55
      config/hypr/scripts/Wlogout.sh

55
config/hypr/scripts/Wlogout.sh

@ -1,38 +1,43 @@
#!/bin/bash #!/bin/bash
# Set variables for parameters
A_2160=1000
B_2160=1000
A_1440=500
B_1440=550
A_1080=300
B_1080=380
A_720=50
B_720=50
# Check if wlogout is already running # Check if wlogout is already running
if pgrep -x "wlogout" > /dev/null; then if pgrep -x "wlogout" > /dev/null; then
pkill -x "wlogout" pkill -x "wlogout"
exit 0 exit 0
fi fi
# detect monitor res # Detect monitor resolution and scaling factor
x_mon=$(hyprctl -j monitors | jq '.[] | select(.focused==true) | .width') resolution=$(hyprctl -j monitors | jq -r '.[] | select(.focused==true) | .height / .scale' | bc -l | cut -d '.' -f 1)
y_mon=$(hyprctl -j monitors | jq '.[] | select(.focused==true) | .height')
hypr_scale=$(hyprctl -j monitors | jq -r '.[] | select(.focused==true) | .scale') hypr_scale=$(hyprctl -j monitors | jq -r '.[] | select(.focused==true) | .scale')
# Set parameters based on screen resolution and scaling factor echo "Detected Resolution: $resolution"
if [[ $x_mon =~ ^[0-9]+$ && $y_mon =~ ^[0-9]+$ && $(echo "$hypr_scale > 0" | bc -l) -eq 1 ]]; then
resolution=$(echo "$y_mon / $hypr_scale" | bc -l | cut -d '.' -f 1)
echo "Detected Resolution: $resolution"
if ((resolution >= 2160)); then # Set parameters based on screen resolution and scaling factor
wlogout --protocol layer-shell -b 6 -T $(echo "600 * 2160 / $resolution * $hypr_scale" | bc -l) -B $(echo "700 * 2160 / $resolution * $hypr_scale" | bc -l) & if ((resolution >= 2160)); then
echo "Setting parameters for resolution >= 2160p" wlogout --protocol layer-shell -b 3 -T $(echo "$A_2160 * 2160 / $resolution * $hypr_scale" | bc -l) -B $(echo "$B_2160 * 2160 / $resolution * $hypr_scale" | bc -l) &
elif ((resolution >= 1440)); then echo "Setting parameters for resolution >= 2160p"
wlogout --protocol layer-shell -b 6 -T $(echo "500 * 1440 / $resolution * $hypr_scale" | bc -l) -B $(echo "550 * 1440 / $resolution * $hypr_scale" | bc -l) & elif ((resolution >= 1440)); then
echo "Setting parameters for resolution >= 1440p" wlogout --protocol layer-shell -b 6 -T $(echo "$A_1440 * 1440 / $resolution * $hypr_scale" | bc -l) -B $(echo "$B_1440 * 1440 / $resolution * $hypr_scale" | bc -l) &
elif ((resolution >= 1080)); then echo "Setting parameters for resolution >= 1440p"
wlogout --protocol layer-shell -b 6 -T $(echo "400 * 1080 / $resolution * $hypr_scale" | bc -l) -B $(echo "400 * 1080 / $resolution * $hypr_scale" | bc -l) & elif ((resolution >= 1080)); then
echo "Setting parameters for resolution >= 1080p" wlogout --protocol layer-shell -b 6 -T $(echo "$A_1080 * 1080 / $resolution * $hypr_scale" | bc -l) -B $(echo "$B_1080 * 1080 / $resolution * $hypr_scale" | bc -l) &
elif ((resolution > 720)); then echo "Setting parameters for resolution >= 1080p"
wlogout --protocol layer-shell -b 3 -T $(echo "50 * 720 / $resolution * $hypr_scale" | bc -l) -B $(echo "50 * 720 / $resolution * $hypr_scale" | bc -l) & elif ((resolution > 720)); then
echo "Setting parameters for resolution >= 720p" wlogout --protocol layer-shell -b 3 -T $(echo "$A_720 * 720 / $resolution * $hypr_scale" | bc -l) -B $(echo "$B_720 * 720 / $resolution * $hypr_scale" | bc -l) &
else echo "Setting parameters for resolution >= 720p"
wlogout & else
echo "Setting default parameters for resolution <= 720p" wlogout &
fi echo "Setting default parameters for resolution <= 720p"
fi fi
# Give some time for wlogout to start and exit # Give some time for wlogout to start and exit
@ -41,4 +46,4 @@ fi
# Check if wlogout is still running after starting # Check if wlogout is still running after starting
#if pgrep -x "wlogout" > /dev/null; then #if pgrep -x "wlogout" > /dev/null; then
# pkill -x "wlogout" # pkill -x "wlogout"
#fi #fi
Loading…
Cancel
Save