arch packages
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
.*
|
||||||
|
!.gitignore
|
||||||
70
install-packages.sh
Normal file
70
install-packages.sh
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Install all packages from this machine via pacman.
|
||||||
|
# --needed skips already-installed packages.
|
||||||
|
# Only leaf packages are listed; dependencies are pulled in automatically.
|
||||||
|
|
||||||
|
packages=(
|
||||||
|
alacritty
|
||||||
|
base
|
||||||
|
base-devel
|
||||||
|
blueman
|
||||||
|
bluez-utils
|
||||||
|
clang
|
||||||
|
efibootmgr
|
||||||
|
extra-cmake-modules
|
||||||
|
fastfetch
|
||||||
|
fcitx5-configtool
|
||||||
|
fcitx5-gtk
|
||||||
|
feh
|
||||||
|
firefox
|
||||||
|
flameshot
|
||||||
|
git
|
||||||
|
grim
|
||||||
|
grub-btrfs
|
||||||
|
gst-plugin-pipewire
|
||||||
|
i3lock
|
||||||
|
i3-wm
|
||||||
|
inkscape
|
||||||
|
krita
|
||||||
|
libreoffice-still
|
||||||
|
man-db
|
||||||
|
mousepad
|
||||||
|
neovim
|
||||||
|
network-manager-applet
|
||||||
|
ninja
|
||||||
|
okular
|
||||||
|
pasystray
|
||||||
|
pavucontrol
|
||||||
|
pipewire-alsa
|
||||||
|
plasma-meta
|
||||||
|
polybar
|
||||||
|
pyright
|
||||||
|
python-pynvim
|
||||||
|
qt6-wayland
|
||||||
|
ranger
|
||||||
|
rofi
|
||||||
|
rust-analyzer
|
||||||
|
signal-desktop
|
||||||
|
slurp
|
||||||
|
snap-pac
|
||||||
|
sof-firmware
|
||||||
|
sway
|
||||||
|
swaybg
|
||||||
|
swayidle
|
||||||
|
swaylock
|
||||||
|
syncthing
|
||||||
|
texlive-langother
|
||||||
|
texlive-meta
|
||||||
|
thunar
|
||||||
|
thunderbird
|
||||||
|
tumbler
|
||||||
|
vala
|
||||||
|
waybar
|
||||||
|
wl-clipboard
|
||||||
|
xclip
|
||||||
|
zathura-pdf-mupdf
|
||||||
|
zram-generator
|
||||||
|
zsh
|
||||||
|
)
|
||||||
|
|
||||||
|
sudo pacman -S --needed "${packages[@]}"
|
||||||
Reference in New Issue
Block a user