meta: Use normal dpi settings for now

Since the device we're using is normal DPI, we have to manually adjust
these two values. Note that the rest of the setup is mostly automated
when it comes to determining the size of things.
This commit is contained in:
Donovan Glover 2021-11-15 12:54:50 -05:00
parent fa24fb9ea3
commit 1607d886b6
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 7 additions and 4 deletions

View File

@ -4,8 +4,9 @@
# NOTE: This file is automatically generated by pywal. Do not edit it by hand.
[global]
# Make the width 3740 (3840 - 100), have 50 left margin and 95 above
geometry = "3740x5-50+95"
# Make the width 3740 (3840 - 100), have 50 left margin and 95 above (for HiDPI, below this is normal DPI)
# geometry = "3740x5-50+95"
geometry = "1870x5-25+45"
# Show multiple notifications in the same box
separator_height = 0

View File

@ -20,8 +20,10 @@ fading = true
# Shadow settings
shadow-radius = 8
shadow-opacity = 0.5
shadow-offset-x = -10
shadow-offset-y = -10
# Shadow offset (-10 for HiDPI, -5 otherwise)
shadow-offset-x = -5
shadow-offset-y = -5
# Fade settings
fade-in-step = 0.04