diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2024-08-12 13:01:47 +0200 |
---|---|---|
committer | Fabian Kirchner <kirchner@posteo.de> | 2024-08-12 13:01:47 +0200 |
commit | 27d773e746ecbaffd0304da7adbb90a9e1b3c0e0 (patch) | |
tree | fad958d653ec84888591d6719c8559d0e4f0f420 /app/Main.hs | |
parent | 07acb8985844bf1df34eeab13abc0f6ca279d93f (diff) |
fix: fix padding on the right side
Diffstat (limited to 'app/Main.hs')
-rw-r--r-- | app/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs index 66883b9..b8fa0e2 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -143,7 +143,7 @@ createWindow args = do vmsk = X.cWColormap .|. X.cWBorderPixel .|. X.cWBackingPixel .|. X.cWOverrideRedirect swidth = fi (X.displayWidth dpy scrn) sheight = fi (X.displayHeight dpy scrn) - wwidth = swidth - 16 + wwidth = swidth - 2 * wspac wspac = args.spacing wleft = wspac fnt <- X.xftFontOpen dpy scr "IosevkaTerm Nerd Font:size=14" |