1
1
Fork 0

walker: use static size

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2024-11-24 13:13:06 -06:00
parent 0125176363
commit 8be59b929c
Signed by: myned
GPG key ID: C7224454F7881A34

View file

@ -156,8 +156,8 @@ in {
#!! Inherit from default layout #!! Inherit from default layout
# https://github.com/abenz1267/walker/blob/master/internal/config/layout.default.json # https://github.com/abenz1267/walker/blob/master/internal/config/layout.default.json
layout.ui.window = let layout.ui.window = let
w = 1000 / config.custom.scale; w = 750;
h = 500 / config.custom.scale; h = 250;
in { in {
width = w; width = w;
height = h; height = h;
@ -188,7 +188,7 @@ in {
item = { item = {
icon = { icon = {
icon_size = "largest"; # 128px icon_size = "larger"; # 64px
pixel_size = 32; # Downscale pixel_size = 32; # Downscale
}; };