Page 1 of 1
Window size
Posted: Tue May 28, 2024 6:09 am
by XWoolffX
I have Ubuntu 22.04.4 LTS on a Asus Zen Book. Poker TH did not alowed me to have a full sized window...? What could be the problem? I install it 4 times in different ways, result? always the same, I only have a small window which is unusable. Any body else have the same problem and a solution? Thanks right now for any Info about this.
Re: Window size
Posted: Tue May 28, 2024 10:21 am
by boehmi
What window are you talking about? The login, lobby or game window?
The game window you can get to full screen by pressing Ctrl+F.
You could also play around with QT_SCALE_FACTOR according to this
https://unix.stackexchange.com/question ... plications
It didn't do anything on my Kubuntu 22.04 system though.
Re: Window size
Posted: Fri Apr 11, 2025 1:49 pm
by microchipe
Just in case someone is trying it like me, worked on my WINDOWS 10 with release 1.1.2, from a simple shortcut with those parameters.
Scale factor 1.8 gave me almost fullhd size.
Cheers!
Re: Window size
Posted: Fri Oct 17, 2025 11:00 pm
by Kerrnel
# Forum thinks this an external link - code snipped
$ cat /opt/PokerTH/pokerth<dot>sh
#!/bin/bash
appname=`basename $0 | sed s,\.sh$,,`
dirname=`dirname $0`
if [ "${dirname:0:1}" != "/" ]; then
dirname=$PWD/$dirname
fi
LD_LIBRARY_PATH=$dirname/libs
export LD_LIBRARY_PATH
# Akua
export QT_USE_PHYSICAL_DPI=1
export QT_SCALE_FACTOR=1.75
export QT_QPA_FONTDIR=$dirname/data/fonts
exec $dirname/$appname $*