-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile
342 lines (275 loc) · 10.4 KB
/
Makefile
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
SHELL := /bin/bash
dir = ~/.dots
all: base de media apps laptop
base: prereqs git langs rust shell tools editor network other
de: wm notifications menu theme terminal scrots fm
media: audio images video music
laptop: tweaks screen
apps: utils browser vpn torrents android documents dev
# ---
prereqs:
@echo "Installing prereqs..."
sudo zypper in gcc gcc-c++ make cmake automake autoconf clang lld wget zip unzip openssh-server bzip2 curl ninja meson opi unar
sudo zypper in avahi
sudo systemctl enable --now avahi-daemon
sudo firewall-cmd --permanent --zone=public --add-port=5353/udp
sudo firewall-cmd --permanent --zone=public --add-protocol=igmp
sudo firewall-cmd --permanent --zone=public --add-service=ssdp
sudo firewall-cmd --permanent --zone=public --add-service=mdns
rust:
@echo "Installing rust..."
curl -sf -L https://static.rust-lang.org/rustup.sh | sh
export PATH=$PATH:~/.cargo/bin
source ~/.cargo/env
rustup toolchain add nightly
rustup component add rust-src --toolchain nightly
rustup component add clippy --toolchain nightly
rustup component add rust-analyzer --toolchain nightly
rustup override set nightly
rustup default nightly
rustup target add wasm32-unknown-unknown
sudo zypper in mold
langs:
@echo "Installing python & node..."
curl https://mise.run | sh
eval "$(~/.local/bin/mise activate bash)"
mise use --global node@20
mise use --global [email protected]
git:
@echo "Installing git..."
sudo zypper in git git-lfs gitui
git lfs install
mkdir -p ~/.config/git
ln -sf $(dir)/dots/git/gitignore ~/.config/git/ignore
ln -sf $(dir)/dots/git/gitconfig ~/.gitconfig
tools:
sudo zypper in -y fzf jq htop tree the_silver_searcher gnupg ncdu powertop dfc ffmpeg fd ripgrep zoxide
utils:
# Note: Run with `sudo -EH yast2`.
sudo zypper in yast2-control-center-qt
sudo zypper in sqlitebrowser rclone yt-dlp
sudo zypper in xcursor-themes hyprpicker
opi signal-desktop
cargo install --git https://github.com/frnsys/kpass.git
cargo install --git https://github.com/frnsys/agenda.git
cargo install --git https://github.com/frnsys/stash.git
sudo zypper in -y flatpak
dev:
sudo zypper in -y podman # podman for docker
flatpak install flathub io.podman_desktop.PodmanDesktop
sudo zypper in -y just
cargo install cross
cargo install bacon
cargo install wasm-pack wasm-bindgen-cli
cargo install cargo-expand cargo-machete
cargo install mdbook mdbook-toc
editor:
@echo "Installing neovim..."
sudo zypper in bat wl-clibpoard
wget https://github.com/neovim/neovim/archive/refs/tags/nightly.tar.gz -O /tmp/neovim.tar.gz
cd /tmp; tar -xzvf neovim.tar.gz; \
cd neovim-*; make CMAKE_BUILD_TYPE=Release && sudo make install \
&& sudo ln -sf /usr/local/bin/nvim /usr/bin/vi \
&& sudo ln -sf /usr/local/bin/nvim /usr/bin/vim \
&& sudo ln -sf /usr/bin/vim /etc/alternatives/editor
ln -sf $(dir)/dots/nvim ~/.config/nvim
network:
sudo zypper install iwd dhcp-client systemd-network
# iwd tui
cargo install impala
# Set group for access to iwd, etc.
# Requires logout/login for changes to take effect.
sudo groupadd netdev
sudo usermod -aG netdev francis
sudo systemctl enable --now systemd-networkd
sudo systemctl enable --now systemd-resolved
sudo systemctl enable --now iwd
sudo bash -c 'echo -e "[General]\nEnableNetworkConfiguration=true" > /etc/iwd/main.conf'
# WARN: You should first check that the new network setup works.
sudo zypper rm --clean-deps NetworkManager wpa_supplicant
music:
sudo zypper in ncmpcpp mpd mpclient
ln -sf $(dir)/dots/ncmpcpp ~/.ncmpcpp
mkdir ~/.mpd/
touch ~/.mpd/{mpd.db,mpd.log,mpd.pid,mpd.state}
ln -sf $(dir)/dots/mpd ~/.mpd/mpd.conf
# disable as the system instance conflicts with the user instance
sudo systemctl disable --now mpd
systemctl enable --now --user mpd
video:
opi codecs
sudo zypper in mpv
ln -sf $(dir)/dots/mpv ~/.config/mpv
# mpvc for controlling mpv
git clone --depth 1 https://github.com/lwilletts/mpvc.git /tmp/mpvc
cd /tmp/mpvc && sudo make install
# Better way of browsing YouTube.
git clone --depth 1 [email protected]:trizen/pipe-viewer.git /tmp/pipe-viewer
sudo zypper in perl-Module-Build perl-Data-Dump perl-File-ShareDir perl-Gtk3 perl-JSON
opi perl-LWP-UserAgent-Cached
cd /tmp/pipe-viewer \
&& perl Build.PL --gtk \
&& sudo ./Build installdeps \
&& sudo ./Build install
audio:
sudo zypper in pavucontrol alsa-utils bluez bluetuith
shell:
sudo zypper in fish
mkdir ~/.config/fish
ln -s $(dir)/dots/fish ~/.config/fish/config.fish
menu:
sudo zypper in bemenu
scrots:
# for screenshots & screen recordings
sudo zypper in grim slurp gifsicle wf-recorder
images:
cargo install --git https://github.com/frnsys/vu.git
sudo zypper in ImageMagick ImageMagick-extra
sudo zypper in libwebpdecoder3 libwebp-devel libwebp-tools
fm:
sudo zypper -y in poppler-tools ffmpegthumbnailer jq
cargo install --git https://github.com/sxyazi/yazi yazi-fm
ln -sf $(dir)/dots/yazi ~/.config/yazi
wm:
sudo zypper in swaybg swayidle
# Onscreen keyboard.
cargo install --git https://github.com/frnsys/kway.git
# Lockscreen with virtual keyboard,
# for touchscreen.
sudo zypper in gtklock
git clone [email protected]:frnsys/gtklock-virtkb-module.git /tmp/gtklock
cd /tmp/gtklock && make && sudo make install
# Monitor power state control
sudo zypper in wlopm
# kanshi for display management
# Get output/monitor connector names
# grep . /sys/class/drm/*/status
sudo zypper in kanshi
mkdir -p ~/.config/kanshi
ln -s $(dir)/dots/kanshi ~/.config/kanshi/config
sudo zypper in wlr-randr
sudo zypper in xwayland river xdg-desktop-portal-wlr
# Inhibit idle while audio is playing
sudo zypper in libpulse-devel wayland-devel wayland-protocols-devel SwayAudioIdleInhibit
# River layout system
sudo zypper in zig wayland-devel wayland-protocols-devel
cargo install --git https://github.com/pkulak/filtile
mkdir ~/.config/river
ln -s $(dir)/dots/river ~/.config/river/init
notifications:
sudo zypper in mako libnotify-tools
mkdir ~/.config/mako
ln -sf $(dir)/dots/mako ~/.config/mako/config
terminal:
sudo zypper in kitty kitty-terminfo
mkdir ~/.config/kitty
ln -sf $(dir)/dots/kitty ~/.config/kitty/kitty.conf
browser:
sudo zypper in ca-certificates-steamtricks ca-certificates-cacert ca-certificates-mozilla ca-certificates-mozilla-prebuilt ca-certificates-letsencrypt ca-certificates
sudo zypper in qutebrowser
ln -sf $(dir)/dots/qute/config.yml ~/.config/qutebrowser/autoconfig.yml
ln -sf $(dir)/dots/qute/userscripts ~/.local/share/qutebrowser/userscripts
ln -sf $(dir)/dots/qute/greasemonkey ~/.local/share/qutebrowser/greasemonkey
xdg-settings set default-web-browser org.qutebrowser.qutebrowser.desktop
# Google Chrome
opi chrome
vpn:
# See bin/vpn.
# Install VPN configs to `/etc/wireguard`.
sudo zypper in wireguard-tools
theme: # wallpaper, fonts, etc
# GTK/QT themeing
# Note that the font defined here is
# what sets the `system-ui` font in browsers
sudo zypper in -y gnome-themes-accessibility
mkdir -p ~/.config/{gtk-3.0,gtk-4.0}
ln -sf $(dir)/dots/misc/gtk.css ~/.config/gtk-3.0/gtk.css
ln -sf $(dir)/dots/misc/gtk.css ~/.config/gtk-4.0/gtk.css
echo -e "[Qt]\nstyle=GTK+" >> ~/.config/Trolltech.conf
# setup fonts
sudo ln -sf /etc/fonts/conf.avail/50-user.conf /etc/fonts/conf.d/50-user.conf
sudo zypper in -y \
saja-cascadia-code-fonts \
google-inconsolata-fonts \
google-noto-coloremoji-fonts \
google-noto-fonts \
google-noto-sans-cjk-fonts \
terminus-bitmap-fonts \
inter-fonts \
fira-code-fonts \
adobe-sourcesans3-fonts \
adobe-sourcecodepro-fonts \
symbols-only-nerd-fonts \
google-noto-fonts \
google-noto-sans-cjk-fonts
mkdir -p ~/.config/fontconfig
ln -sf $(dir)/dots/misc/fonts.conf ~/.fonts.conf
ln -sf $(dir)/dots/misc/fonts.conf ~/.config/fontconfig/fonts.conf
git clone --depth 1 [email protected]:alexmyczko/fnt.git /tmp/fnt
sudo zypper install -y lcdf-typetools chafa
cd /tmp/fnt && sudo make install
fnt update
fnt install google-dmmono
fnt install google-gabarito
fnt install google-ibmplexsans
fnt install google-nanummyeongjo
fnt install fonts-fantasque-sans
sudo mkdir /usr/share/fonts/truetype/robotomono
sudo wget --content-disposition -P /usr/share/fonts/truetype/robotomono https://github.com/googlefonts/RobotoMono/raw/main/fonts/ttf/RobotoMono-{Bold,BoldItalic,Italic,Light,LightItalic,Medium,MediumItalic,Regular,Thin,ThinItalic}.ttf
sudo fc-cache -fv
# wallpapers
ln -sf $(dir)/walls ~/.walls
ln -sf ~/.walls/1.jpg ~/.wall.jpg
chmod 644 ~/.wall.jpg
sudo zypper rm --clean-deps plymouth
sudo zypper addlock plymouth
tweaks:
sudo zypper in tuned acpi libinput-tools
sudo systemctl enable --now tuned
# Firmware updates
sudo zypper in fwupd
fwupdmgr refresh && fwupdmgr update && fwupdmgr get-updates
# Lower swappiness to avoid disk thrashing
echo "vm.swappiness = 10" | sudo tee -a /etc/sysctl.conf
sudo sysctl -p
# For memory-limited systems,
# enable zswap for better swap performance & lower disk I/O.
# Add:
# zswap.enabled=1 zswap.compressor=lzo zswap.max_pool_percent=20
# To `GRUB_CMDLINE_LINUX_DEFAULT` in `/etc/default/grub`;
# then run `grub2-mkconfig -o /boot/grub2/grub.cfg`.
# You could also enable zram, but in my benchmarks
# having both simultaneously leads to performance drops
# compared to having one or the other on its own;
# and zswap performs better than zram on its own.
# sudo zypper in systemd-zram-service
# sudo systemctl enable --now zramswap
# If the initial terminal font is too small,
# add this to `/etc/vconsole.conf`:
# FONT=ter-v32n.psfu
android:
sudo zypper in android-tools
git clone https://github.com/google/adb-sync /tmp/adb-sync
sudo cp /tmp/adb-sync/adb-sync /usr/local/bin/
flatpak install flathub org.localsend.localsend_app
sudo firewall-cmd --permanent --zone=public --add-port=53317/udp
sudo firewall-cmd --permanent --zone=public --add-port=53317/tcp
torrents:
sudo zypper in qbittorent
sudo opi -n nicotine-plus
sudo firewall-cmd --permanent --zone=public --add-port=36767/udp
sudo firewall-cmd --permanent --zone=public --add-port=36767/tcp
documents:
# mupdf rather than poppler as it supports epubs.
sudo zypper in zathura zathura-plugin-pdf-mupdf
mkdir ~/.config/zathura
ln -sf $(dir)/dots/zathura ~/.config/zathura/zathurarc
sudo zypper in libreoffice-calc libreoffice-gtk3
screen:
sudo usermod -aG video ${USER}
sudo zypper in brightnessctl gammastep
other:
ln -sf $(dir)/dots/bash ~/.bash_profile
ln -sf $(dir)/bin ~/.bin
# symlink notes and sites
ln -sf $(dir)/dots/port ~/.config/port.yml