XIVLauncher community has two wine "supported".
-
unofficial-wine-xiv-git https://github.com/rankynbass/unofficial-wine-xiv-git/releases
-
wine-ge-xiv
| @import url("https://gist.githubusercontent.com/XenHat/a415b14a38e9ccd81f4a7de8c2fec159/raw/cleaner-discord-base.css") |
| /* Usage: Copy paste in the Vencord Quick CSS Editor | |
| /* original at https://gist.github.com/XenHat/a415b14a38e9ccd81f4a7de8c2fec159 */ | |
| /* Hide annoying sticker popup window that appears when you type */ | |
| .channelTextArea-1FufC0 > .container-1ZA19X { | |
| display: none; | |
| width: 0; | |
| } | |
| /* Remove App Launcher from chat channels */ |
| #!/bin/bash | |
| # ----------------------------------------------- | |
| # Handle URLs using preferred ways | |
| # ----------------------------------------------- | |
| shopt -s extglob | |
| DEFAULT_BROWSER=firefox | |
| # Since the script is to act as the real defualt web browser | |
| # We need to not call xdg-open to avoid creating an infinite loop |
XIVLauncher community has two wine "supported".
unofficial-wine-xiv-git https://github.com/rankynbass/unofficial-wine-xiv-git/releases
wine-ge-xiv
By default Linux distros are unoptimized in terms of I/O latency. So, here are some tips to improve that.
Most apps still don't do multi-threaded I/O access, so it's a thread-per-app which makes per-app speed always bottlenecked by single-core CPU performance (that's not even accounting for stuttering on contention between multiple processes), so even with NVMe capable of 3-6 GB/s of linear read you may get only 1-2 GB/s with ideal settings and 50-150/100-400 MB/s of un/buffered random read (what apps actually use in real life) is the best you can hope for.
All writes are heavily buffered on 3 layers (OS' RAM cache, device's RAM cache, device's SLC-like on-NAND cache), so it's difficult to get real or stable numbers but writes are largelly irrelevant for system's responsiveness, so they may be sacrificed for better random reads.
The performance can be checked by:
| # https://gist.github.com/XenHat/fafa4697b51c3279f74967609af03120 | |
| # | |
| # Settings | |
| # Needs quotes | |
| GitVersion="2.28.0" | |
| # | |
| # | |
| # | |
| # | |
| # Self-Elevate |
| {"lastUpload":"2022-01-02T08:49:16.852Z","extensionVersion":"v3.4.3"} |
| // Original rules: https://github.com/coldfix/udiskie/wiki/Permissions | |
| // Changes: Added org.freedesktop.udisks2.filesystem-mount-system, as this is used by Dolphin. | |
| polkit.addRule(function(action, subject) { | |
| var YES = polkit.Result.YES; | |
| // NOTE: there must be a comma at the end of each line except for the last: | |
| var permission = { | |
| // required for udisks1: | |
| "org.freedesktop.udisks.filesystem-mount": YES, | |
| "org.freedesktop.udisks.luks-unlock": YES, |