-
Notifications
You must be signed in to change notification settings - Fork 0
/
poi.eimi
59 lines (52 loc) · 999 Bytes
/
poi.eimi
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
#!/bin/sh
# PACKAGE LISTS
packages=(
mpv
vivaldi
wireshark-qt
obs-studio
telegram-desktop
discord
geany
geany-plugins
torbrowser-launcher
spotify-launcher
apache
polari
gimp
fcitx5
fcitx5-mozc
fcitx5-configtool
fcitx5-gtk
);
aur_packages=(
adwaita-qt-git
qimgv
woeusb
hardened_malloc
);
# AUR HANDLER
aur() {
git clone https://aur.archlinux.org/$1.git;
cd $1; makepkg -si; cd;
}
# PACKAGE INSTALLATION
for i in ${packages[@]}; do
sudo pacman -S $i;
done;
for i in ${aur_packages[@]}; do
aur $i;
done;
read -p "Delete AUR (git) package builds? (y/N): " a;
if [[ $a == "y" ]]; then
for i in ${aur_packages[@]}; do
rm -rfv $i;
done;
fi;
# CONFIGURATIONS
curl https://raw.githubusercontent.com/zb3/gnome-gamma-tool/main/gnome-gamma-tool.py > ~/Documents/ggamma.py;
python ~/Documents/ggamma.py -g 0.74:0.66:0.68 -t 5000 -c 0.95 -b 1.0:0.96:0.97;
mkdir ~/Pictures/qimgv;
mkdir ~/Downloads/Pixiv_new;
env LD_PRELOAD=/usr/lib/libhardened_malloc.so;
sudo rm -f poi.eimi;