mirror of
https://git.adityakumar.xyz/betterlockscreen-openrc.git
synced 2024-11-09 10:39:45 +00:00
Fix DPI scaling (#287)
This commit is contained in:
parent
de7bcdc2b5
commit
806866de57
1 changed files with 3 additions and 9 deletions
|
@ -314,14 +314,8 @@ logical_px() {
|
||||||
# adjust scaling
|
# adjust scaling
|
||||||
if [ -n "$dpi" ]; then
|
if [ -n "$dpi" ]; then
|
||||||
local scale
|
local scale
|
||||||
scale=$(echo "scale=2; $dpi / 96.0" | bc)
|
scale=$(echo "scale=3; $dpi / 96.0" | bc)
|
||||||
|
|
||||||
# check if scaling the value is worthy
|
|
||||||
if [ "$(echo "$scale > 1.25" | bc -l)" -eq 0 ]; then
|
|
||||||
echo "$pixels"
|
|
||||||
else
|
|
||||||
echo "$scale * $pixels / 1" | bc
|
echo "$scale * $pixels / 1" | bc
|
||||||
fi
|
|
||||||
else
|
else
|
||||||
# return the default value if no DPI is set
|
# return the default value if no DPI is set
|
||||||
echo "$pixels"
|
echo "$pixels"
|
||||||
|
|
Loading…
Reference in a new issue