-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·55 lines (48 loc) · 1.14 KB
/
install.sh
File metadata and controls
executable file
·55 lines (48 loc) · 1.14 KB
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
#!/usr/bin/env bash
sudo apt install \
sway \
waybar \
alacritty \
grim slurp \
git git-delta \
btop \
imv \
mpv \
poweralertd \
mako-notifier \
swayosd brightnessctl \
pipewire-audio \
pavucontrol \
bluez \
# manually install: bluetuith \
wl-clipboard \
hyprlock \
autotiling \
gsimplecal \
dbus-broker \
xdg-desktop-portal-wlr \
fonts-noto fonts-inter \
xarchiver unzip \
zsh \
neovim \
iwd iwgtk \
power-profiles-daemon \
gnupg pinentry-tty\
build-essential
# Fonts
wget -q https://github.com/ryanoasis/nerd-fonts/releases/download/v3.4.0/JetBrainsMono.zip -O /tmp/fonts.zip
unzip /tmp/fonts.zip -d ~/.local/share/fonts/
fc-cache
# Enable brightness control
sudo usermod -a -G video $USER
mkdir -p ~/.config/nvim
cp -r sway ~/.config/
cp -r mako ~/.config/
cp -r waybar ~/.config/
cp gitconfig ~/.gitconfig
cp nvim.lua ~/.config/nvim/init.lua
cp zshrc ~/.zshrc
# Zsh plugin manager
git clone https://github.com/zdharma/zinit.git ~/.zinit
# Login from tty1 into sway
echo '[ "$(tty)" = "/dev/tty1" ] && exec dbus-run-session sway' > ~/.zprofile