-
Notifications
You must be signed in to change notification settings - Fork 0
/
0001_install_software.sh
executable file
·66 lines (61 loc) · 1.54 KB
/
0001_install_software.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
#!/bin/env bash
# Refresh pacman
sudo pacman -Syy
# Install yay package manger
sudo pacman -S yay --noconfirm
# [Snap Store]
# Install snap store
yay -S snapd --noconfirm
# Enable snap service
sudo systemctl enable --now snapd.socket
# Create symlink for classic support
sudo ln -s /var/lib/snapd/snap /snap
# [Online Signatures]
sudo pacman -S ccid --noconfirm
sudo systemctl start pcscd.socket
sudo systemctl enable pcscd.socket
# [3rd Party Software]
# Thunar file manager
sudo pacman -S thunar --noconfirm
# Neofetch system reporter
sudo pacman -S neofetch --noconfirm
# Firefox developer edition
sudo pacman -S firefox-developer-edition --noconfirm
# Chromium
sudo pacman -S chromium --noconfirm
# VS Code
sudo snap install code --classic
# Slack
yay -S slack-desktop --noconfirm
# Spotify
yay -S spotify --noconfirm
# Okular PDF reader
sudo snap install okular
# Telegram desktop
sudo snap install telegram-desktop
# Mailspring
sudo snap install mailspring
# Speedtest-cli
sudo pacman -S speedtest-cli --noconfirm
# Bluetooth manager
yay -S blueman --noconfirm
# Neovim
sudo pacman -S neovim --noconfirm
# Bittorrent
sudo pacman -S qbittorrent --noconfirm
# Easy untar
yay -s dtrx --noconfirm
# Catfish search tool
sudo pacman -S catfish --noconfirm
# Hugo static site generator
sudo pacman -S hugo --noconfirm
# Clipboard tool
sudo pacman -S xsel --noconfirm
# Scrot screenshot utility
sudo pacman -S scrot --noconfirm
# Networking
sudo pacman -S nmap --noconfirm
# File manager
sudo pacman -S mc --noconfirm
# Kazam screen recorder
sudo yay -S kazam --noconfirm