-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenbox
More file actions
37 lines (28 loc) · 825 Bytes
/
openbox
File metadata and controls
37 lines (28 loc) · 825 Bytes
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
#!/bin/bash
# installing some Programms.
sudo pacman -Syu
sudo pacman -S xorg xorg-server xterm lightdm-gtk-greeter lightdm openbox obconf menumaker vlc nano firefox pavucontrol feh archlinux-wallpaper git
#Testing Lightdm
sudo systemctl enable lightdm
sudo systemctl start lightdm
git clone https://aur.archlinux.org/obtheme.git
sudo mv obtheme /usr/share/themes
###
echo "Do you want to install Steam <Y/N>"
read var
if [ "$var" = "N" ];
then
echo $var
else
sudo pacman -S steam ttf-liberation vulkan-icd-loader
echo $var
fi
###
su arch
sudo echo "~/.fehbg &" > /etc/xdg/openbox/autostart
sudo echo "steam &" > /etc/xdg/openbox/autostart
feh --bg-scale /usr/share/backgrounds/archlinux/archbtw.png
mmaker -vf openbox3
mkdir -p /home/arch/.config/openbox
cp -a /etc/xdg/openbox /home/arch/.config
exit