Instance | Branch |
---|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EGL client extensions string: | |
EGL_EXT_client_extensions, EGL_EXT_device_base, | |
EGL_EXT_device_enumeration, EGL_EXT_device_query, EGL_EXT_explicit_device, | |
EGL_EXT_platform_base, EGL_EXT_platform_device, EGL_EXT_platform_wayland, | |
EGL_EXT_platform_x11, EGL_EXT_platform_xcb, | |
EGL_KHR_client_get_all_proc_addresses, EGL_KHR_debug, | |
EGL_KHR_platform_gbm, EGL_KHR_platform_wayland, EGL_KHR_platform_x11, | |
EGL_MESA_platform_gbm, EGL_MESA_platform_surfaceless | |
GBM platform: |
Oh boi, here I give you the solution for that. This document is based on these links:
- https://steamcommunity.com/app/221410/discussions/2/616189106498372437/?l=portuguese&ctp=8
- https://wiki.archlinux.org/title/dnsmasq#NetworkManager
- ValveSoftware/steam-for-linux#3401
I don't know, perhaps the Steam application doesn't cache the dns locally or something hence your computer will always lookup for the domain everytime you download it on each chunks. CMIIW.
- Add more standart packets to installing in chroot env
This markdown document should help to you (and me :3) install arch linux with all needed non graphical things for regular PC with UEFI. Excented source of information about installation: https://wiki.archlinux.org/title/Installation_guide
- Download iso image, from https://repo.hyron.dev/archlinux/iso/ (UA mirror) as example.
- Flash iso to usb stick using rufus, balendaEtcher, dd or etc.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo dnf remove libkrunfw libkrun | |
sudo dnf install libkrunfw-4.0.0~asahikrun-1.fc39 libkrun-1.6.0~asahikrun-3.fc39 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import platform.AppKit.* | |
import platform.Foundation.NSMakeRect | |
import platform.Foundation.NSNotification | |
import platform.Foundation.NSRect | |
import platform.darwin.NSObject | |
fun main() { | |
val app = NSApplication.sharedApplication() | |
app.delegate = MyAppDelegate() | |
app.setActivationPolicy(NSApplicationActivationPolicy.NSApplicationActivationPolicyRegular) |