diff options
| -rw-r--r-- | conky.conf.in | 9 | ||||
| -rw-r--r-- | docs/superpowers/plans/2026-09-16-conky-lua-dashboard.md | 12 |
2 files changed, 17 insertions, 4 deletions
diff --git a/conky.conf.in b/conky.conf.in index d2cd1e3..9587f91 100644 --- a/conky.conf.in +++ b/conky.conf.in @@ -19,8 +19,13 @@ conky.config = { -- c8 = 200/255 alpha. The colour follows the palette: @BODY_SHADE@ with its -- leading '#' stripped, so a scheme switch recolours the backdrop too. own_window_colour = '#c8@BODY_SHADE_RAW@', - minimum_width = 1200, - minimum_height = 700, + -- The drawing surface, which Hyprland's fullscreen rule does NOT resize: + -- the window goes fullscreen but conky keeps drawing at its minimum size, so + -- a smaller value leaves the backdrop covering only part of the screen with + -- bare wallpaper beside it. Set to the primary monitor (DP-1, 2560x1080). + -- On a different monitor the grid still fills whatever surface it gets. + minimum_width = 2560, + minimum_height = 1080, double_buffer = true, update_interval = 2, total_run_times = 0, diff --git a/docs/superpowers/plans/2026-09-16-conky-lua-dashboard.md b/docs/superpowers/plans/2026-09-16-conky-lua-dashboard.md index 339e2f1..4cff90a 100644 --- a/docs/superpowers/plans/2026-09-16-conky-lua-dashboard.md +++ b/docs/superpowers/plans/2026-09-16-conky-lua-dashboard.md @@ -532,6 +532,9 @@ conky.config = { -- own_window_argb_value (deprecated); both emit warnings on this build. -- c8 = 200/255 alpha. own_window_colour = '#c8181926', + -- Deliberately small: this is the development config and a window this size + -- is easier to screenshot and compare than a fullscreen one. The template + -- uses the real monitor size. minimum_width = 1200, minimum_height = 700, double_buffer = true, @@ -840,8 +843,13 @@ conky.config = { -- c8 = 200/255 alpha. The colour follows the palette: @BODY_SHADE@ with its -- leading '#' stripped, so a scheme switch recolours the backdrop too. own_window_colour = '#c8@BODY_SHADE_RAW@', - minimum_width = 1200, - minimum_height = 700, + -- The drawing surface, which Hyprland's fullscreen rule does NOT resize: + -- the window goes fullscreen but conky keeps drawing at its minimum size, so + -- a smaller value leaves the backdrop covering only part of the screen with + -- bare wallpaper beside it. Set to the primary monitor (DP-1, 2560x1080). + -- On a different monitor the grid still fills whatever surface it gets. + minimum_width = 2560, + minimum_height = 1080, double_buffer = true, update_interval = 2, total_run_times = 0, |
