You are not logged in.
Pages: 1
greembow@StonksPadLite
----------------------
OS: Arch Linux x86_64
Host: 20SAS03S00 ThinkPad X1 Yoga 4th
Kernel: Linux 5.13.10-arch1-1
Uptime: 33 mins
Packages: 1370 (pacman)
Shell: /bin/zsh 5.8
WM: Openbox
WM Theme: Garf
Theme: Arc-Dark [GTK2/3]
Icons: Papirus-Dark [GTK2/3]
Terminal: kitty
Font: Noto Sans, 10 [GTK2/3]
CPU: Intel i7-10510U (8) @ 4.9GHz [52.0°on]
Memory: 2.41GiB / 15.27GiB (15%) Minecraft Crash Report: https://pastebin.com/NigmHjj6
MultiMC Console Log: https://pastebin.com/EbdPQbxM
Ok, so, I have been having issues playing all minecraft versions that are not 1.17+ recently. This time, I was trying to play Sky Factory 4 through MultiMC (This is on my laptop, system specs above.) I have successfully run Sky Factory 4 on my desktop without any issues. The errors seem to be related to display detection, judging by the number of xrandr errors. So far, I have tried launching with Java 7, Java 11, and Java 16, and with all of them the game will crash before it is able to initialize. With Java 8, I see some outputs from mods and what not. Other than that, I'm at a loss of what to do.
Offline
Is xorg-xrandr actually installed? The minecraft internal libs use that to query display information.
Offline
xorg-xrandr 1.5.1-2 is installed. I just ran a full system upgrade as well.
Offline
Something that I forgot to add is that this laptop is a 2 in 1 so I have this script to flip the screen. I doubt that it is causing the issue, but I figured I might include it anyways.
file=~/.screen
if [ ! -f $file ] ; then
touch $file
fi
if grep -qx 1 "$file" ; then
xrandr -o normal
xinput set-prop 'Wacom Pen and multitouch sensor Finger touch' 'Coordinate Transformation Matrix' 1 0 0 0 1 0 0 0 1
xinput set-prop 'Wacom Pen and multitouch sensor Pen stylus' 'Coordinate Transformation Matrix' 1 0 0 0 1 0 0 0 1
echo 0 > "$file"
else
xrandr -o inverted
xinput set-prop 'Wacom Pen and multitouch sensor Finger touch' 'Coordinate Transformation Matrix' -1 0 1 0 -1 1 0 0 1
xinput set-prop 'Wacom Pen and multitouch sensor Pen stylus' 'Coordinate Transformation Matrix' -1 0 1 0 -1 1 0 0 1
echo 1 > "$file"
fiOffline
Pages: 1