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
# NOTE: Input file paths MUST be absolute, whereas output path MUST NOT be relative and files (including output file) MUST be of the same type | |
ffmpeg -f concat -safe 0 -i <(echo "file '/absolute/path/to/first/file.wav'\nfile '/absolute/path/to/second/file.wav'\n") -c copy -stats output.wav |
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> | |
``` |
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 |
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 |
- 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
If you get error Failed to read disk ... with lsblk
when installi9ng Arch Linux with archinstall
, try this:
-
Boot archiso.
-
Run lsblk:
lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 705.6M 1 loop /run/archiso/airootfs
sda 8:0 1 29.9G 0 disk
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
# ~/.config/starship.toml | |
# get editor completions based on config schema | |
"$schema" = "https://starship.rs/config-schema.json" | |
# Add new line | |
add_newline = false | |
# Command execution timeout | |
command_timeout = 2000 |
NewerOlder