window-maker / wmaker

Mirror of the official repository repo.or.cz/wmaker-crm.git. Do not send pull requests here, send your patches to wmaker-dev@googlegroups.com instead
https://repo.or.cz/wmaker-crm.git
GNU General Public License v2.0
136 stars 18 forks source link

32 inch 4k screen #44

Open Bajocensis opened 5 months ago

Bajocensis commented 5 months ago

Hello everyone,

I’ve been using Windowmaker since… 2000 ! I have never found a better window manager for my use.

However, recently, I acquired a 32 inch 4k screen, and there was a problem. Windowmaker does not seem suitable for this type of screen (icon size, refresh, etc.). For example, with VLC, the image is jerky, it blurs...

Any help to avoid migrating to Gnome or a similar manager? Many thanks !

Best regards, Bajo

norayr commented 5 months ago

you can use xrandr to scale everything.

let's say

xrandr --output eDP1 --scale 0.7x0.7

On Wed, 24 Apr 2024 01:06:56 -0700 Bajocensis @.***> wrote:

Hello everyone,

I’ve been using Windowmaker since… 2000 ! I have never found a better window manager for my use.

However, recently, I acquired a 32 inch 4k screen, and there was a problem. Windowmaker does not seem suitable for this type of screen (icon size, refresh, etc.). For example, with VLC, the image is jerky, it blurs...

Any help to avoid migrating to Gnome or a similar manager? Many thanks !

Best regards, Bajo

-- Reply to this email directly or view it on GitHub: https://github.com/window-maker/wmaker/issues/44 You are receiving this because you are subscribed to this thread.

Message ID: @.***>

-- There are two ways of constructing a software design. One way is to make it so simple that there are obviously no deficiencies. And the other way is to make it so complicated that there are no obvious deficiencies.

-- C.A.R. Hoare

Bajocensis commented 5 months ago

:(

bajo@Debian:~$ xrandr --output eDP1 --scale 0.7x0.7 warning: output eDP1 not found; ignoring

cpchan commented 5 months ago

You can see the names of your outputs by doing:

xrandr -q

Just look for the one that is "connected"

Bajocensis commented 5 months ago

Many thanks for your answer and your help. Here is the result :+1:

Screen 0: minimum 16 x 16, current 3840 x 2160, maximum 32767 x 32767 XWAYLAND0 connected primary 3840x2160+0+0 (normal left inverted right x axis y axis) 700mm x 390mm 3840x2160 59.98*+ 2048x1536 59.95
1920x1440 59.97
1600x1200 59.87
1440x1080 59.99
1400x1050 59.98
1280x1024 59.89
1280x960 59.94
1152x864 59.96
1024x768 59.92
800x600 59.86
640x480 59.38
320x240 59.52
2560x1600 59.99
1920x1200 59.88
1680x1050 59.95
1440x900 59.89
1280x800 59.81
720x480 59.71
640x400 59.95
320x200 58.96
3200x1800 59.96
2880x1620 59.96
2560x1440 59.96
2048x1152 59.90
1920x1080 59.96
1600x900 59.95
1368x768 59.88
1280x720 59.86
1024x576 59.90
864x486 59.92
720x400 59.55
640x350 59.77

thiagosatake commented 5 months ago

Getting the screen name: xrandr | grep connected | grep -v disconnected | awk '{print $1}' Reduce the screen size by 20% (zoom-in) xrandr --output screen-name --scale 0.8x0.8

Bajocensis commented 5 months ago

Thanks for your help.

I tried, unfortunetly :

bajo@Debian:~$ xrandr | grep connected | grep -v disconnected | awk '{print $1}' XWAYLAND0 bajo@Debian:~$ xrandr --output XWAYLAND0 --scale 0.8x0.8 X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 139 (RANDR) Minor opcode of failed request: 7 (RRSetScreenSize) Serial number of failed request: 22 Current serial number in output stream: 24

Bajocensis commented 3 months ago

Up !