forked from theduckchannel/bspwm-install
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·209 lines (164 loc) · 5.51 KB
/
setup.py
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
#!/usr/bin/python
import os
import sys
import configparser
import time
import subprocess as sp
cp = configparser.ConfigParser(allow_no_value=True)
cp.read('packages.ini')
username = sp.getoutput('whoami')
def cprint( fmt, fg=None, bg=None, style=None ):
"""
Colour-printer.
cprint( 'Hello!' ) # normal
cprint( 'Hello!', fg='g' ) # green
cprint( 'Hello!', fg='r', bg='w', style='bx' ) # bold red blinking on white
List of colours (for fg and bg):
k black
r red
g green
y yellow
b blue
m magenta
c cyan
w white
List of styles:
b bold
i italic
u underline
s strikethrough
x blinking
r reverse
y fast blinking
f faint
h hide
"""
COLCODE = {
'k': 0, # black
'r': 1, # red
'g': 2, # green
'y': 3, # yellow
'b': 4, # blue
'm': 5, # magenta
'c': 6, # cyan
'w': 7 # white
}
FMTCODE = {
'b': 1, # bold
'f': 2, # faint
'i': 3, # italic
'u': 4, # underline
'x': 5, # blinking
'y': 6, # fast blinking
'r': 7, # reverse
'h': 8, # hide
's': 9, # strikethrough
}
# properties
props = []
if isinstance(style,str):
props = [ FMTCODE[s] for s in style ]
if isinstance(fg,str):
props.append( 30 + COLCODE[fg] )
if isinstance(bg,str):
props.append( 40 + COLCODE[bg] )
# display
props = ';'.join([ str(x) for x in props ])
if props:
print( '\x1b[%sm%s\x1b[0m' % (props, fmt) )
else:
print( fmt )
def cmd(parameter):
os.system(parameter)
def pause():
time.sleep(3)
def saveLxdmConf():
with open('lxdm.conf', 'w') as configfile:
lxdmCp.write(configfile)
def showWelcomeScreen():
cprint('===========================================================', fg='y', style='b')
cprint(':: The Duck Channel´s bspwm Style ::', fg='g', style='b')
cprint('https://github.com/theduckchannel/bspwm-install', fg='c', style='b')
cprint('===========================================================', fg='y', style='b')
pause()
def installXorg():
cprint('\r\n\r\n:: Installing xorg...', fg='y', style='b')
os.system('sudo pacman --noconfirm -S xorg')
pause()
def installLxdm():
cprint('\r\n\r\n:: Installing Lxdm...', fg='y', style='b')
# install and enable lxdm
os.system('sudo pacman --noconfirm -S lxdm')
os.system('sudo systemctl enable lxdm')
# Copy lxdm.conf to local copy
os.system('cp /etc/lxdm/lxdm.conf .')
os.system(f'sed -i "s/# autologin=dgod/autologin={username}/" lxdm.conf')
os.system('sed -i "s/# numlock=0/numlock=1/" lxdm.conf')
os.system('sed -i "s/# session=\/usr\/bin\/startlxde/session=\/usr\/bin\/bspwm/" lxdm.conf')
os.system('sudo cp -f lxdm.conf /etc/lxdm/lxdm.conf')
os.system('rm lxdm.conf')
pause()
def installRegularPackages():
cprint('\r\n:: Installing Regular packages...', fg='y', style='b')
regPkgs = ''
for pkg in cp['Regular']:
regPkgs = regPkgs + pkg + ' '
print(regPkgs)
os.system(f'sudo pacman --noconfirm -S {regPkgs}')
pause()
def installYayAurHelper():
cprint('\r\n:: Install Yay AUR Helper...', fg='y', style='b')
os.system('git clone https://aur.archlinux.org/yay.git')
os.chdir('yay')
os.system('makepkg -si')
os.chdir('../')
os.system('rm -rf yay')
pause()
def installAurPkgs():
cprint('\r\n:: Installing AUR packages...', fg='y', style='b')
for pkg in cp['AUR']:
os.system(f'yay --noconfirm -S {pkg}')
pause()
def installDotFiles():
# if ~/.config not exists, so create
cprint('\r\n:: Installing dotfiles...', fg='y', style='b')
if(not os.path.isdir(f'/home/{username}/.config')):
os.mkdir(f'/home/{username}/.config')
os.system(f'cp -rf {os.getcwd()}/dotfiles/.config/* /home/{username}/.config')
os.system(f'cp -rf {os.getcwd()}/dotfiles/.Xre* /home/{username}/')
os.system(f'cp -rf {os.getcwd()}/dotfiles/.xs* /home/{username}/')
os.system(f'cp -rf {os.getcwd()}/dotfiles/.fe* /home/{username}/')
os.system(f'cp -rf {os.getcwd()}/dotfiles/.vimrc /home/{username}/')
pause()
def updateAndUpgrade():
cprint('\r\n:: Update and Upgrading your system...', fg='y', style='b')
os.system('sudo pacman --noconfirm -Syyu')
def showFinalMessage():
cprint('\r\n:: Everything ok...', fg='y', style='b')
input('Press any key to REBOOT!')
os.system('reboot')
def installGrubTheme():
cprint('\r\n:: Installing Grub Theme...', fg='y', style='b')
os.system(f'sudo cp -rf {os.getcwd()}/grub-themes/Vimix /boot/grub/themes')
os.system(f'cp /etc/default/grub .')
os.system("sed -i 's/#GRUB_THEME=.*/GRUB_THEME=\"\/boot\/grub\/themes\/Vimix\/theme.txt\"/' grub")
os.system('sudo cp -f grub /etc/default/grub')
os.system('sudo grub-mkconfig -o /boot/grub/grub.cfg')
os.system('rm grub')
def polyBarConfig():
cprint('\r\n:: Polybar Config...', fg='y', style='b')
os.system('./polybar-config.sh')
def main():
showWelcomeScreen()
updateAndUpgrade()
installXorg()
installLxdm()
installRegularPackages()
installYayAurHelper()
installAurPkgs()
installDotFiles()
installGrubTheme()
polyBarConfig()
showFinalMessage()
if __name__ == "__main__":
main()