This is the method I used to install Arch on the yoga slim 7x. This is from memory so I may have forgotten things
- disable bitlocker in windows
- resize the windows partition
- disable secure boot in BIOS
| // https://www.reddit.com/r/vscode/comments/11e66xh/i_made_neovide_alike_cursor_effect_on_vscode/ | |
| // Configuration | |
| // Set the color of the cursor trail to match the user's cursor color | |
| const Color = "#A052FF" // If set to "default," it will use the theme's cursor color. | |
| // ! default will only reference editorCursor.background | |
| // "workbench.colorCustomizations": { | |
| // "editorCursor.background": "#A052FF", | |
| // } |
Update: works with 24.04(beta) too, and problem still exists in 24.04.
This is how I got the Citrix Workspace client to run in Ubuntu 23.10 in Jan. 2024
Prior to version 2311 Citrix client, this patch was unnecessary, but at 2311 Citrix stopped launching successfully at all in i3.
In XFCE Citrix runs with "proper" full screen support, covering three monitors but
| #!/bin/sh | |
| # This script aims to address the problem of input lag that can occur when using the Chinese input method on macOS. | |
| # It provides a simple and effective solution by terminating the SCIM process, which is often the cause of the lag. | |
| # To use the script, follow these steps: | |
| # 1. Open the Terminal application (located in "Applications/Utilities/Terminal"). | |
| # 2. Copy and paste the script into the Terminal window. | |
| # 3. Press Enter to execute the script. |
| @echo off | |
| :: ------------------------------------------------------------------------------------------------------------ | |
| :: Clean Up ASUS All | |
| :: ------------------------------------------------------------------------------------------------------------ | |
| :: The tool helps to clean up all ASUS software from system | |
| :: ------------------------------------------------------------------------------------------------------------ | |
| :: Before running the tools, | |
| :: 1. Complete backup your system. | |
| :: 2. Disable ASUS Apps from BIOS (MyASUS and Armoury) | |
| :: 3. Run ASUS remove tools (Armoury Crate Uninstall Tool.exe, or geek_uninstall.exe). |
| --- a/gpu/command_buffer/service/shared_image/external_vk_image_backing_factory.cc | |
| +++ b/gpu/command_buffer/service/shared_image/external_vk_image_backing_factory.cc | |
| @@ -257,7 +257,7 @@ | |
| return false; | |
| } | |
| -#if BUILDFLAG(IS_LINUX) | |
| +#if 0 | |
| if (format.IsLegacyMultiplanar()) { | |
| // ExternalVkImageBacking doesn't work properly with external sampler |
| #!/bin/bash | |
| # Variables | |
| ADB="adb -s 52105802eed17447" | |
| THRESHOLD=35 | |
| INTERVAL=1 | |
| INTERVAL_ERROR=300 | |
| GTK3_SETTINGS="$HOME/.config/gtk-3.0/settings.ini" | |
| GTK3_OPTION="gtk-application-prefer-dark-theme" | |
| GTK4_OPTION="org.gnome.desktop.interface color-scheme" |
There was a reddit post about installing Arch on NTFS3 partition. Since Windows and Linux doesn't have directories with same names under the /(C:\), I thought it's possible, and turned out it was actually possible.
If you are not familiar to Linux, for example you've searched on Google "how to dualboot Linux and Windos" or brbrbr... you mustn't try this. This is not practical.