-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.sh
83 lines (74 loc) · 1.1 KB
/
packages.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/bash
## Packages for both Arch and Termux
universal_packages='
git
vim
stow
zip
unzip
ncdu
tree
htop
tmux
screen
bash-completion
wget
openssh
python-pip
'
pipx_packages='
'
## Arch-Specific packages
arch_packages='
base-devel
man-db
npm
xdg-utils
ripgrep
fd
neovim
wl-clipboard
foot-terminfo
python-pipx
'
arch_packages="$arch_packages $universal_packages"
aur_packages='
walk-bin
page-git
'
# For installing from URL
arch_package_urls='
'
# Architecture-specific Arch packages
arch_x86_64_packages='
code
firefox
'
case $(uname -m) in
x86_64)
arch_packages="$arch_packages $arch_x86_64_packages"
arch_package_urls="$arch_package_urls https://mega.nz/linux/repo/Arch_Extra/x86_64/megacmd-x86_64.pkg.tar.zst"
;;
esac
## Termux-specific packages
termux_packages='
man
walk
openssl
libexpat
nodejs
termux-tools
termux-api
proot-distro
megacmd
'
termux_packages="$termux_packages $universal_packages"
## Other stuff
fedora_ostree_layers='
distrobox
sway-config-fedora
mako
libvirt
virt-manager
smartmontools
'