-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbootstrap.sh
More file actions
executable file
·86 lines (76 loc) · 1.42 KB
/
bootstrap.sh
File metadata and controls
executable file
·86 lines (76 loc) · 1.42 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
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
#!/bin/bash
echo "Updating pacman packages and databases..."
sudo pacman -Syu
echo "Done!"
echo "Installing pacman packages..."
sudo pacman -S \
kitty
firefox
neovim
dmenu
flameshot
grim # required by flameshot on wayland
i3lock
nodejs
go
rustup
python
vlc
mpv
git
nautilus
vifm
feh
picom
bat
ripgrep
playerctl
exa
network-manager-applet
zathura
zathura-pdf-mupdf
base-devel
polybar
fish
xclip
wl-clipboard
ttf-fira-code
noto-fonts-cjk
noto-fonts-emoji
noto-fonts
brightnessctl
wireplumber
pipewire-{jack,alsa,pulse}
gsfonts
wofi
waybar
hyprland
hyprpaper
hyprlock
hypridle
hyprpolkitagent
niri
swaybg
xdg-desktop-portal-gnome
gnome-keyring
papirus-icon-theme
echo "Done!"
echo "Installing yay..."
git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si
cd ..
rm -rf yay
echo "Done!"
echo "Setting up .dotfiles"
git clone --bare https://github.com/josepmdc/dotfiles.git $HOME/.dotfiles
dots='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
$dots checkout
$dots config --local status.showUntrackedFiles no
echo "Done!"
# echo "Setting keyboard layout"
# localectl set-x11-keymap es, 105, qwerty caps:swapescape
# echo "Done!"
echo "Adding user to video group (required to run light without sudo)"
sudo usermod -a -G video $USER
echo "Done!"