ref: https://learn.microsoft.com/en-us/answers/questions/3738984/how-to-disable-xbox-game-bar
ref: https://gist.github.com/wey-gu/8712b8ebc62cc0f6236de05565a170f2
We need both Powertoy and AHK to make it working fine, and align with macOS behaviors(mostly)
see here
sudo pacman -S fcitx5 fcitx5-configtool fcitx5-gtk fcitx5-qt fcitx5-rime
# edit /etc/security/pam_env.conf
# add:
# FCITX input-related
GLFW_IM_MODULE DEFAULT=fcitx
INPUT_METHOD DEFAULT=fcitxThis gist is a note for:
Follwing https://learn.omacom.io/2/the-omarchy-manual/97/mac-support is needed.
| --- | |
| services: | |
| metad0: | |
| image: docker.io/vesoft/nebula-metad:nightly | |
| environment: | |
| USER: root | |
| command: | |
| - --meta_server_addrs=192.168.1.101:9559,192.168.1.102:9559,192.168.1.103:9559 | |
| - --local_ip=192.168.1.101 | |
| - --ws_ip=192.168.1.101 |
| # Manus AI Assistant Capabilities | |
| ## Overview | |
| I am an AI assistant designed to help users with a wide range of tasks using various tools and capabilities. This document provides a more detailed overview of what I can do while respecting proprietary information boundaries. | |
| ## General Capabilities | |
| ### Information Processing | |
| - Answering questions on diverse topics using available information | |
| - Conducting research through web searches and data analysis |
Tool: draw.io
Animate the connectors
Animating your connectors is great for demonstrating directional flow charts, electrical circuits and more. To animate your connectors:
Here is a too complicated hack to make Nerd fonts work on the Chromebook terminal. There should be an easier way. Please tell me if you find it.
First we need a CORS compliant web server to fetch the font. I didn't want to have to be online to use the terminal so I'm going to run the server locally. Fetch the server.py file (below) and save it to your linux environment. I put it in ~/hacks/nerdfont/server.py. This little script adds the CORS headers to the python3 http server. It will only serve files from the current folder.
In my ~/.bashrc I added these lines:
# make the nerdfont available to the chromebook terminal# Step 0
# Place prebuild zig binary, say 0.13.0, check latest stable release via https://ziglang.org/download/
wget https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz
xz -d -v zig-linux-x86_64-0.13.0.tar.xz
tar xvf zig-linux-x86_64-0.13.0.tar
sudo mkdir -p /opt
sudo mv zig-linux-x86_64-0.13.0 /opt/