This file contains hidden or 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
Get-AppxPackage -allusers Microsoft.549981C3F5F10 | Remove-AppxPackage |
This file contains hidden or 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
# | |
# ~/.bashrc | |
# | |
# If not running interactively, don't do anything | |
[[ $- != *i* ]] && return | |
# don't put duplicate lines in the history. See bash(1) for more options | |
# ... or force ignoredups and ignorespace | |
HISTCONTROL=ignoredups:ignorespace |
This file contains hidden or 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
base base-devel linux linux-lts linux-firmware linux-headers linux-lts-headers vim nano wget dosfstools efibootmgr apparmor grub os-prober python-distro iperf3 hyfetch lvm2 openssh man-db reflector git github-cli sudo bash-completion inetutils | |
noto-fonts noto-fonts-cjk noto-fonts-emoji wpa_supplicant networkmanager tlp plasma-meta kde-applications ssdm dialog firefox | |
gnome gnome-extra gdm firefox | |
cinnamon lightdm | |
amd-ucode mesa | |
nvidia nvidia-lts | |
qemu-guest-agent | |
AUR | |
ssh-import-id |
This file contains hidden or 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 | |
# Use systemd-networkd instead of dhcpcd as the DHCP client for Raspberry Pi OS | |
# remember to use wpa_passphrase to add SSID & PW to /etc/wpa_supplicant/wpa_supplicant.conf | |
# checking sudo privilege | |
if [[ "$EUID" -ne 0 ]]; then | |
echo "This script must be run as root" 1>&2 # redirect stdout to stderr | |
exit 1 |