When opening rofi on my system, Lunar Client doesn't have an icon, so I looked into /usr/share/applications to check the desktop entry and that made me check /usr/share/icons and run find | grep lunarclient which showed me the icon indeed existed in /usr/share/icons/1024x1024/apps/lunarclient.png, so I was stumped on why it didn't show up. Just looking around I saw the index.theme file and searched it for a mention of a 1024x1024 folder and it did not have one. I updated the file to include [1024x1024/apps] and it actually worked, but after looking at the origin of this directory, it seems to be updated by hicolor-icon-theme, and an update of this package might break this aur-package by overwriting the index.theme file. I came with an alternate solution after reading the PKGBUILD, and realized a much simpler way of fixing this problem was simply just copying lunarclient.png to /usr/share/icons/hicolor/512x512/apps/ instead of 1024x1024. This fixes the issue and building it on my system has worked.I just updated this: # Icon images install -dm755 "${pkgdir}/usr/share/" cp -a \ "${srcdir}/squashfs-root/usr/share/icons" \ "${pkgdir}/usr/share/" to be # Icon images install -dm755 "${pkgdir}/usr/share/icons/hicolor/512x512/apps" cp -a \ "${srcdir}/squashfs-root/usr/share/icons/hicolor/1024x1024/apps/lunarclient.png" \ "${pkgdir}/usr/share/icons/hicolor/512x512/apps/lunarclient.png"
Hope this helps!
Pinned Comments
Nixuge commented on 2023-11-16 15:45 (UTC) (edited on 2023-11-16 15:46 (UTC) by Nixuge)
https://github.com/NVIDIA/open-gpu-kernel-modules/issues/522#issuecomment-1814507887
The nvidia issue has apparently been fixed.
Keeping the other comments pinned for now just in case.
MZPL commented on 2023-07-08 14:59 (UTC)
Regarding the nvidia drivers issue, it appears that adding
__GL_THREADED_OPTIMIZATIONS=0to the environment variables fixes the problem. SourceNixuge commented on 2023-07-07 12:48 (UTC) (edited on 2023-07-07 12:49 (UTC) by Nixuge)
Hello, Doubt a lot of people still come here but while at it, if you're having issues on Minecraft pre-1.13 without forge, it's almost sure it's due to your nvidia drivers.
The current ones (535.54.03-1) are broken for me, and while it makes for a nice challenge and while I can still play with Forge no problem, it's still nice to have smth that works properly.
So here are the nvidia driver/kernel versions to downgrade to (use the "downgrade" command):
nvidia, nvidia-utils, lib32-nvidia-utils: 530.41.03-1 (replace nvidia by nvidia-dkms if using another kernel)
linux, linux-headers: 6.3.7 (replace with linux-zen or smth if using another kernel)