mirror of
https://git.adityakumar.xyz/betterlockscreen-openrc.git
synced 2024-11-08 18:29:45 +00:00
fix: return default dpi pixel coordinates if no dpi is set
This commit is contained in:
parent
271bb03368
commit
e33fc1dacb
1 changed files with 11 additions and 5 deletions
|
@ -123,13 +123,19 @@ lockselect() {
|
|||
logical_px() {
|
||||
# get dpi value from xrdb
|
||||
local DPI=$(xrdb -query | awk '/Xft.dpi/ {print $2}')
|
||||
local SCALE=$(echo "scale=2; $DPI / 96.0" | bc)
|
||||
|
||||
# check if scaling the value is worthy
|
||||
if [ $(echo "$SCALE > 1.25" | bc -l) -eq 0 ]; then
|
||||
|
||||
# return the default value if no DPI is set
|
||||
if [ -z "$DPI"]; then
|
||||
echo $1
|
||||
else
|
||||
echo "$SCALE * $1 / 1" | bc
|
||||
local SCALE=$(echo "scale=2; $DPI / 96.0" | bc)
|
||||
|
||||
# check if scaling the value is worthy
|
||||
if [ $(echo "$SCALE > 1.25" | bc -l) -eq 0 ]; then
|
||||
echo $1
|
||||
else
|
||||
echo "$SCALE * $1 / 1" | bc
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue