Do not actually run the command, but show what will do:
stow -adopt -nv gitMove file and create symlink
stow -adopt -v gitcreate file tree
stow -S gitremove created file tree
stow -D gitremove and recreate file tree
stow -R gitThis is equal to stow -D git && stow -S git
# 获取当前系统中主动安装的包
pacman -Qqet > pkglist
# 从列表文件安装软件包
pacman -S --needed - < pkglist
# 如果其中包含AUR等外部包,需要过滤后再执行
pacman -S --needed $(comm -12 <(pacman -Slq | sort) <(sort pkglist))
# 移除没有列在文件中的包
pacman -Rsu $(comm -23 <(pacman -Qq | sort) <(sort pkglist))sudo apt-get install $(cat pkglist)
xrgs sudo apt-get install < pkglist
for i in $(cat pkglist); do sudo apt-get install $i; done
Change default terminal to kitty
sudo apt install kitty -y
sudo update-alternatives --config x-terminal-emulator