-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdwm_arch.txt
More file actions
54 lines (45 loc) · 1.7 KB
/
dwm_arch.txt
File metadata and controls
54 lines (45 loc) · 1.7 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
For Arch
sudo pacman -S xorg xorg-server xorg-xinit libx11 libxinerama libxft webkit2gtk
#Install Fonts
yay nerd-fonts-mononoki font-awesome
sudo pacman -S ttf-hack
#Alacritty Terminal (Optional)
git clone https://github.com/alacritty/alacritty.git
curl https://sh.rustup.rs -sSf | sh
rustup override set stable
rustup update stable
pacman -S cmake freetype2 fontconfig pkg-config make libxcb
cargo build --release
sudo cp target/release/alacritty /usr/local/bin
sudo cp extra/logo/alacritty-term.svg /usr/share/pixmaps/Alacritty.svg
sudo mkdir -p /usr/local/share/man/man1
gzip -c extra/alacritty.man | sudo tee /usr/local/share/man/man1/alacritty.1.gz > /dev/null
mkdir -p ~/.bash_completion
cp extra/completions/alacritty.bash ~/.bash_completion/alacritty
echo "source ~/.bash_completion/alacritty" >> ~/.bashrc
#.xinitrc file (cp /etc/X11/xinit/xinitrc /home/wilson/.xinitrc)
#xrandr --output VGA-1 --auto --right-of DP-2
feh --bg-scale .wallpapers/1.png &
/usr/bin/ibus-daemon &
xrandr -s 1440x900 &
dwmbloacks &
xrdb -merge ~/.Xresources
exec dwm
#.Xresources File
Xcursor.theme: Adwaita
Xcursor.size: 52
#.bash_profile
INSERT startx
#.bashrc
[[ $(fgconsole 2>/dev/null == 1 ]] && exec startx --vt1
#Grab dwm and st from suckless.org
git clone https://git.suckless.org/dwm
git clone https://git.suckless.org/st
#Install Wilson Config (Recommended)
git clone https://github.com/OEFB6/dwm.git
git clone https://github.com/OEFB6/st.git
git clone https://github.com/OEFB6/dmenu.git
git clone https://github.com/OEFB6/dwmbloacks.git
git clone https://github.com/OEFB6/slock.git
git clone https://github.com/0EFB6/wallpapers.git
git clone https://github.com/0EFB6/notes.git