Follow the guide: https://wiki.archlinux.org/title/Bluetooth_mouse
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
# Stop the kernel driver | |
sudo modprobe -r hid_magicmouse | |
# Start the driver with these options | |
sudo modprobe hid_magicmouse \ | |
emulate_3button=0 \ | |
middle_click_3finger=1 \ | |
stop_scroll_while_moving=1 \ | |
scroll_acceleration=1 \ | |
scroll_speed=50 \ | |
scroll_delay_pos_x=300 \ |
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
If you trust the maintainer instakll it with: | |
``` | |
yay -S --mflags --skipinteg <package> | |
``` |
Step 1
Download macOS Installer (InstallAssistant.pkg
). Here is the link to Sonoma beta installer:
- Erase USB drive with Disk Utility using format
Mac OS Extended (Journaled)
andMaster Boot Record
and call itMyVolume
- Use Finder to mount/open
InstallMacOSX.dmg
. - Run following commands:
pkgutil --expand /Volumes/Install\ OS\ X/InstallMacOSX.pkg /tmp/El\ Capitan
diskutil eject Install\ OS\ X
cd /tmp/El\ Capitan
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
#!/bin/bash | |
# Function to display usage | |
usage() { | |
echo "Usage: $0 [-s] <file_or_directory_path>..." | |
echo " -s Install fonts system-wide (requires sudo)" | |
exit 1 | |
} | |
# Function to install fonts and update font cache |
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
find . -type l ! -exec test -e {} \; -print |
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
podman pod create --publish 8080:80 --name demo.wp.1 | |
podman run -d --name wp.db --pod demo.wp.1 \ | |
-e MARIADB_USER=mariadb \ | |
-e MARIADB_PASSWORD=mariadb \ | |
-e MARIADB_ROOT_PASSWORD=mariadb \ | |
docker.io/library/mariadb | |
podman exec -it wp.db \ | |
mysql -e "CREATE DATABASE wordpress;" --user=root --password=mariadb |
- Remove no-bitmaps setting from your
fontconfig
:
mv cd /usr/share/fontconfig/conf.avail/70-no-bitmaps.conf ~/Downloads
- Install
ttf-nerd-fonts-symbols
,ttf-nerd-fonts-symbols-common
andttf-nerd-fonts-symbols-mono
packages from AUR:
yay ttf-nerd-fonts-symbols
NewerOlder