forked from grassmunk/Chicago95
-
Notifications
You must be signed in to change notification settings - Fork 0
/
installer.py
executable file
·603 lines (529 loc) · 25.2 KB
/
installer.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
#!/usr/bin/env python3
import gi
import gc
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, Gdk, GLib
import os
import subprocess
import time
from pathlib import Path
import shutil
UI_FILE = "installer.glade"
running_folder = os.path.dirname(os.path.abspath(__file__))
assets = "/Extras/"
#HOME_FOLDER = '/home/phil/Chicago95/Cursors/'
class InstallGUI:
def __init__(self):
self.set_style()
self.builder = Gtk.Builder()
self.builder.add_from_file(running_folder + assets + UI_FILE)
self.builder.connect_signals(self)
self.get_sizes()
self.set_options()
window = self.builder.get_object('main window')
#window.connect('delete-event', lambda x,y: Gtk.main_quit())
self.window_installer = self.builder.get_object('installer')
self.window_installer.connect('delete-event', lambda x,y: Gtk.main_quit())
self.progress_window = self.builder.get_object('progress')
self.progress_window.connect('delete-event', lambda x,y: Gtk.main_quit())
window.show_all()
self.window_installer.show_all()
print("Installer running from: " + running_folder)
def set_style(self):
# From https://gist.github.com/carlos-jenkins/8923124
provider = Gtk.CssProvider()
provider.load_from_path(running_folder + "/Theme/Chicago95/gtk-3.0/gtk.css")
screen = Gdk.Display.get_default_screen(Gdk.Display.get_default())
# I was unable to found instrospected version of this
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION = 600
Gtk.StyleContext.add_provider_for_screen( screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION )
def on_window_destroy(self, window):
print("Closing Window")
Gtk.main_quit()
return False
def folder_size(self, path='.'):
return int(subprocess.check_output(['du','-sk', path]).split()[0].decode('utf-8'))
def get_sizes(self):
# Get sizes
statvfs = os.statvfs(running_folder)
statvfs.f_frsize * statvfs.f_blocks # Size of filesystem in bytes
statvfs.f_frsize * statvfs.f_bfree # Actual number of free bytes
self.available_kb = (statvfs.f_frsize * statvfs.f_bavail) / 1024
self.theme_size_kb = self.folder_size(running_folder+"/Theme")
self.icons_size_kb = self.folder_size(running_folder+"/Icons/Chicago95")
self.cursors_size_kb = self.folder_size(running_folder+"/Cursors")
self.background_size_kb = 0
self.sounds_size_kb = self.folder_size(running_folder+"/sounds")
self.fonts_size_kb = self.folder_size(running_folder+"/Fonts")
self.total_size_kb = (self.theme_size_kb + self.icons_size_kb + self.cursors_size_kb +
self.background_size_kb + self.sounds_size_kb + self.fonts_size_kb)
def set_options(self):
self.install_theme = True
self.install_icons = True
self.install_cursors = True
self.install_background = True
self.install_sounds = True
self.install_fonts = True
self.thunar = True
self.terminal_colors = True
self.bash = True
self.zsh = False
self.panel = True
def next_clicked(self, button):
stack = self.builder.get_object('stack')
current_page = stack.get_visible_child_name()
next_button = self.builder.get_object('next')
if next_button.get_label() == "Install":
self.install_chicago95()
return
if next_button.get_label() == "Finish":
print("Install Completed! Enjoy Chicago95!")
Gtk.main_quit()
return False
if current_page == 'page_welcome':
#component_page = self.builder.get_object('page_components')
component_page = stack.get_child_by_name('page_components')
back_button = self.builder.get_object('back')
back_button.set_sensitive(True)
# Get the labels
self.theme_size = self.builder.get_object('theme size')
self.icons_size = self.builder.get_object('icons size')
self.cursors_size = self.builder.get_object('cursors size')
self.background_size = self.builder.get_object('background size')
self.sounds_size = self.builder.get_object('sound size')
self.fonts_size = self.builder.get_object('font size')
self.remaining_size = self.builder.get_object('remaining size')
self.total_size = self.builder.get_object('total size')
# Change the labels
self.theme_size.set_label("{} k".format(self.theme_size_kb))
self.icons_size.set_label("{} k".format(self.icons_size_kb))
self.cursors_size.set_label("{} k".format(self.cursors_size_kb))
self.sounds_size.set_label("{} k".format(self.sounds_size_kb))
self.fonts_size.set_label("{} k".format(self.fonts_size_kb))
self.remaining_size.set_label("{:.0f} k".format(int(self.available_kb - self.total_size_kb)))
self.total_size.set_label("{} k".format(self.total_size_kb))
else:
component_page = stack.get_child_by_name('page_customizations')
thunar_check = self.builder.get_object('thunar')
panel_check = self.builder.get_object('panel')
if not self.install_theme:
print('[THUNAR] Warning: GTK Theme not selected, cannot install Thunar status bar image')
thunar_check.set_tooltip_text("Warning: GTK Theme not selected, cannot install Thunar status bar image")
thunar_check.set_sensitive(False)
thunar_check.set_active(False)
self.thunar = False
else:
thunar_check.set_tooltip_text("Enables the Thunar status bar image")
thunar_check.set_sensitive(True)
thunar_check.set_active(True)
self.thunar = True
if not self.check_xfce_panel():
print("[PANEL] Warning: xfce4-panel-profiles not installed, manual panel installation required. See INSTALL.md")
panel_check.set_tooltip_text("Warning: xfce4-panel-profiles not installed, manual panel installation required. See INSTALL.md")
panel_check.set_sensitive(False)
panel_check.set_active(False)
self.panel = False
next_button.set_label("Install")
stack.set_visible_child(component_page)
def back_clicked(self, button):
stack = self.builder.get_object('stack')
current_page = stack.get_visible_child_name()
if current_page == 'page_components':
#component_page = self.builder.get_object('page_components')
component_page = stack.get_child_by_name('page_welcome')
back_button = self.builder.get_object('back')
back_button.set_sensitive(False)
else:
component_page = stack.get_child_by_name('page_components')
next_button = self.builder.get_object('next')
next_button.set_label("Next")
stack.set_visible_child(component_page)
def install_chicago95(self):
components = "\tTheme:\t\t{}\n\tIcons:\t\t{}\n\tCursors:\t{}\n\tBackground:\t{}\n\tSounds:\t\t{}\n\tFonts:\t\t{}".format(self.install_theme, self.install_icons, self.install_cursors, self.install_background, self.install_sounds, self.install_fonts)
customizations = "\tThunar Graphics:\t{}\n\tChange Terminal Colors:\t{}\n\tSet Bash Prompt:\t{}\n\tSet zsh promt/theme:\t{}\n\tCustomize Panel:\t{}".format(self.thunar, self.terminal_colors, self.bash, self.zsh, self.panel)
self.progress_label_sections = []
print("Installing Chicago 95 with the following options:\n Components:\n {}\n Customizations:\n {}".format(components, customizations))
self.copy_files = {}
if self.install_theme:
# Does ~/.themes exist?
Path(os.path.expanduser("~/.themes")).mkdir(parents=True, exist_ok=True)
self.copy_files.update(self.get_files(running_folder+"/Theme/Chicago95/", os.path.expanduser("~/.themes"), "Theme"))
self.copy_files["install_theme"] = self.install_theme
self.progress_label_sections.append("GTK Theme")
if self.install_icons:
Path(os.path.expanduser("~/.icons")).mkdir(parents=True, exist_ok=True)
self.copy_files.update(self.get_files(running_folder+"/Icons/Chicago95/", os.path.expanduser("~/.icons"), "Icons"))
self.copy_files["install_icons"] = self.install_icons
self.progress_label_sections.append("Icons")
if self.install_cursors:
Path(os.path.expanduser("~/.icons")).mkdir(parents=True, exist_ok=True)
self.copy_files.update(self.get_files(running_folder+"/Cursors/", os.path.expanduser("~/.icons"), "Cursors"))
self.copy_files["install_cursors"] = self.install_cursors
self.progress_label_sections.append("Cursors")
if self.install_background:
self.copy_files["install_background"] = self.install_background
self.progress_label_sections.append("Background")
if self.install_sounds:
Path(os.path.expanduser("~/.local/share/sounds")).mkdir(parents=True, exist_ok=True)
self.copy_files.update(self.get_files(running_folder+"/sounds/Chicago95/", os.path.expanduser("~/.local/share/sounds"), "sounds"))
self.copy_files["install_sounds"] = self.install_sounds
self.progress_label_sections.append("Sounds")
if self.install_fonts:
Path(os.path.expanduser("~/.fonts")).mkdir(parents=True, exist_ok=True)
self.copy_files.update(self.get_files(running_folder+"/Fonts/", os.path.expanduser("~/.fonts"), "Fonts"))
self.copy_files["install_fonts"] = self.install_fonts
self.progress_label_sections.append("Fonts")
if self.thunar:
self.copy_files["thunar"] = self.thunar
self.progress_label_sections.append("Thunar Spinner")
if self.terminal_colors:
Path(os.path.expanduser("~/.local/share/xfce4/terminal/colorschemes")).mkdir(parents=True, exist_ok=True)
Path(os.path.expanduser("~/.config/xfce4/terminal/")).mkdir(parents=True, exist_ok=True)
self.copy_files[running_folder+"/Extras/Chicago95.theme"] = os.path.expanduser("~/.local/share/xfce4/terminal/colorschemes")
self.copy_files[running_folder+"/Extras/terminalrc"] = os.path.expanduser("~/.config/xfce4/terminal/")
if os.path.exists(os.path.expanduser("~/.config/xfce4/terminal/terminalrc")):
shutil.copyfile(os.path.expanduser("~/.config/xfce4/terminal/terminalrc"),os.path.expanduser("~/.config/xfce4/terminal/backup.terminalrc.chicago95"))
self.copy_files["terminal_colors"] = self.terminal_colors
self.progress_label_sections.append("Terminal Colors")
if self.bash:
self.copy_files["bash"] = self.bash
self.progress_label_sections.append("Bash Prompt")
if self.zsh:
self.copy_files["zsh"] = self.zsh
self.progress_label_sections.append("Zsh Prompt")
if self.panel:
self.copy_files["panel"] = self.panel
self.progress_label_sections.append("Panel")
self.progres_label_names = iter(self.progress_label_sections)
self.window_installer.hide()
self.progress_bar = self.builder.get_object('progress bar')
self.progress_label = self.builder.get_object('progress file')
self.progress_label_component = self.builder.get_object('progress label')
self.progress_label_component.set_label("Installing component: {}".format(next(self.progres_label_names)))
first_file_name = list(self.copy_files.keys())[0].split("/")[-1]
self.progress_label.set_label(first_file_name)
self.progress_bar.set_fraction(0.0)
frac = 1.0 / len(self.copy_files)
self.progress_window.show_all()
self.task = self.install()
self.id = GLib.idle_add(self.task.__next__)
def install(self):
i = 0.0
print("Installing Chicago 95")
for from_file in self.copy_files:
self.progress_label.set_label(from_file.split("/")[-1])
i += 1.0
self.progress_bar.set_fraction(i / len(self.copy_files))
# copy action here
if isinstance(self.copy_files[from_file], str):
if not os.path.isdir(os.path.dirname(self.copy_files[from_file])):
Path(os.path.dirname(self.copy_files[from_file])).mkdir(parents=True, exist_ok=True)
try:
shutil.copy(from_file, self.copy_files[from_file], follow_symlinks=False)
except FileExistsError:
pass # We need to do this if we're overwritting the theme cause of symlinks
else:
if from_file == "install_theme" and self.copy_files["install_theme"]:
print("Enabling Theme in XFCE4")
self.xfconf_query('xsettings', '/Net/ThemeName', "Chicago95")
self.xfconf_query('xfce4-notifyd', '/theme', "Chicago95")
self.xfconf_query('xfce4-notifyd', '/initial-opacity', "1.000000")
self.xfconf_query('xfwm4', '/general/theme', "Chicago95")
self.xfconf_query('xfwm4', '/general/title_font', "Sans Bold 8")
self.xfconf_query("xfwm4","/general/shadow_delta_height","0")
self.xfconf_query("xfwm4","/general/shadow_delta_width","0")
self.xfconf_query("xfwm4","/general/shadow_delta_x","0")
self.xfconf_query("xfwm4","/general/shadow_delta_y","-3")
self.xfconf_query("xfwm4","/general/shadow_opacity","50")
self.xfconf_query("xfwm4","/general/show_dock_shadow","false")
self.xfconf_query("xfwm4","/general/show_frame_shadow","false")
self.xfconf_query("xfwm4","/general/show_popup_shadow","false")
self.xfconf_query("xfwm4","/general/title_shadow_active","false")
self.xfconf_query("xfwm4","/general/title_shadow_inactive","false")
self.change_component_label()
elif from_file == "install_icons" and self.copy_files["install_icons"]:
print("Enabling Icons in XFCE4")
self.xfconf_query('xsettings', '/Net/FallbackIconTheme', 'Adwaita')
self.xfconf_query('xsettings', '/Net/IconThemeName', "Chicago95")
self.xfconf_query('xfce4-desktop','/desktop-icons/file-icons/show-filesystem', 'true')
self.xfconf_query('xfce4-desktop','/desktop-icons/file-icons/show-home', 'true')
self.xfconf_query('xfce4-desktop','/desktop-icons/file-icons/show-trash','true')
self.change_component_label()
elif from_file == "install_background" and self.copy_files["install_background"]:
print("Changing background")
r = "{:6f}".format(0/255)
g = "{:6f}".format(128/255)
b = "{:6f}".format(128/255)
a = "1.000000"
try:
self.xfconf_query('xfce4-desktop', '/backdrop/screen0/monitorVirtual1/workspace0/image-style', "0")
args = ['xfconf-query', '-c' ,'xfce4-desktop' ,
'-p' ,'/backdrop/screen0/monitorVirtual1/workspace0/rgba1' , '--create',
'-t' ,'double' ,'-s' ,'0.000000' ,'-t' ,'double' ,'-s' ,
'0.500000' ,'-t' ,'double' ,'-s', '0.500000' ,'-t' ,'double' ,
'-s' ,'1.000000']
subprocess.check_call(args, stdout=subprocess.DEVNULL)
except subprocess.CalledProcessError:
try:
self.xfconf_query('xfce4-desktop', '/backdrop/screen0/monitor0/workspace0/image-style', "0")
args = ['xfconf-query', '-c' ,'xfce4-desktop' ,
'-p' ,'/backdrop/screen0/monitor0/workspace0/rgba1' ,
'-t' ,'double' ,'-s' ,'0.000000' ,'-t' ,'double' ,'-s' ,
'0.500000' ,'-t' ,'double' ,'-s', '0.500000' ,'-t' ,'double' ,
'-s' ,'1.000000']
subprocess.check_call(args, stdout=subprocess.DEVNULL)
except:
print("Could not update background. Set your background manually to #008080")
except:
print("Could not update background. Set your background manually to #008080")
self.change_component_label()
elif from_file == "install_cursors" and self.copy_files["install_cursors"]:
print("Enabling Cursors in XFCE4")
self.xfconf_query('xsettings', '/Gtk/CursorThemeName', "Chicago95 Standard Cursors")
self.change_component_label()
elif from_file == "install_sounds" and self.copy_files["install_sounds"]:
print("Enabling Sounds in XFCE4")
self.xfconf_query('xsettings', '/Net/EnableEventSounds', "true")
self.xfconf_query('xsettings', '/Net/EnableInputFeedbackSounds', "true")
self.xfconf_query('xsettings', '/Net/SoundThemeName', "Chicago95")
self.change_component_label()
elif from_file == "install_fonts" and self.copy_files["install_fonts"]:
print("Enabling Fonts in XFCE4")
self.change_component_label()
# LOL this is a lie we don't have to do anything
elif from_file == "thunar" and self.copy_files["thunar"]:
if os.path.exists(os.path.expanduser("~/.themes/Chicago95/gtk-3.24/apps/thunar.css")):
print("Enabling authenticity in Thunar")
shutil.move( os.path.expanduser("~/.themes/Chicago95/gtk-3.24/apps/thunar.css"),os.path.expanduser("~/.themes/Chicago95/gtk-3.24/apps/thunar.css.bak") )
fileh = open(os.path.expanduser("~/.themes/Chicago95/gtk-3.24/apps/thunar.css.bak"),"r")
nfileh = open(os.path.expanduser("~/.themes/Chicago95/gtk-3.24/apps/thunar.css"),"w")
next_line = False
for line in fileh:
if next_line:
if "/*" in line:
line = line.replace("/*","")
if "c95" in line:
line = line.replace("c95", "msw")
if "*/" in line:
line = line.replace("*/","")
next_line = False
if "You can enable the spin button theme by uncommenting the following!" in line:
next_line = True
nfileh.write(line)
fileh.close()
nfileh.close()
else:
print("Chicago95 theme not installed, cannot modify thunar")
self.change_component_label()
elif from_file == "terminal_colors" and self.copy_files["terminal_colors"]:
print("Enabling Terminal color theme")
self.change_component_label()
# This is done through the copy/paste of terminalrc
elif from_file == "bash" and self.copy_files["bash"]:
print("Enabling bash prompt")
prompts_file = open(running_folder+"/Extras/DOSrc", "r")
prompts = prompts_file.read()
prompts_file.close()
if os.path.exists(os.path.expanduser("~/.bashrc")):
shutil.copyfile(os.path.expanduser("~/.bashrc"),os.path.expanduser("~/.config/xfce4/terminal/backup.bashrc.chicago95"))
bashrc_out = open(os.path.expanduser("~/.bashrc"), "a")
bashrc_out.write(prompts)
bashrc_out.close()
else:
bashrc_out = open(os.path.expanduser("~/.bashrc"), "w")
bashrc_out.write(prompts)
bashrc_out.close()
self.change_component_label()
elif from_file == "zsh" and self.copy_files["zsh"]:
if os.path.exists(os.path.expanduser("~/.oh-my-zsh")):
print("Enabling zsh theme/prompt")
prompts_file = open(running_folder+"/Extras/ZSHDOSrc", "r")
prompts = prompts_file.read()
prompts_file.close()
shutil.copyfile(running_folder+"/Extras/Chicago95.zsh-theme", os.path.expanduser("~/.oh-my-zsh/themes/Chicago95.zsh-theme"))
shutil.move( os.path.expanduser("~/.zshrc"),os.path.expanduser("~/.backup.zshrc.chicago95") )
fileh = open(os.path.expanduser("~/.backup.zshrc.chicago95"),"r")
nfileh = open(os.path.expanduser("~/.zshrc"),"w")
for line in fileh:
if "ZSH_THEME" in line:
line = "ZSH_THEME=Chicago95"
nfileh.write(line)
fileh.close()
nfileh.close()
else:
print("Oh my zsh not installed, cannot install theme")
self.change_component_label()
elif from_file == "panel" and self.copy_files["panel"]:
print("Generating XFCE panel")
print("Installing Panel config from: "+ running_folder +"/Extras/Chicago95_Panel_Preferences.tar.bz2")
#xfce4-panel-profiles load Extras/Chicago95_Panel_Preferences.tar.bz2
subprocess.check_call(["xfce4-panel-profiles", "load", running_folder+"/Extras/Chicago95_Panel_Preferences.tar.bz2"], stdout=subprocess.DEVNULL)
self.change_component_label()
gc.collect()
yield True
stack = self.builder.get_object('stack')
stack.set_visible_child(stack.get_child_by_name('page_completed'))
self.progress_window.hide()
next_button = self.builder.get_object('next')
back_button = self.builder.get_object('back')
back_button.set_sensitive(False)
next_button.set_label("Finish")
self.window_installer.show_all()
GLib.source_remove(self.id)
subprocess.Popen(["mousepad", running_folder+"/Extras/post_install.txt"])
yield False
def change_component_label(self):
try:
self.progress_label_component.set_label("Installing component: {}".format(next(self.progres_label_names)))
except:
pass
def xfconf_query(self, channel, prop, new_value):
try:
xfconf_query_path = subprocess.check_output(["which", "xfconf-query"]).strip()
except:
print("Warning: xfconf-query not installed, cannot auto-enable theme. Use your distros theme management to install Chicago95")
return
try:
print("Changing xfconf setting {}/{} to {}".format(channel, prop, new_value))
args = [
xfconf_query_path,
"--channel", channel,
"--property", prop,
"--set", new_value
]
subprocess.check_call(args, stdout=subprocess.DEVNULL)
except subprocess.CalledProcessError:
print("Changing xfconf setting {}/{} to {}".format(channel, prop, new_value))
args = [
xfconf_query_path,
"--channel", channel,
"--property", prop,
"--create", "--type", "string",
"--set", new_value
]
subprocess.check_call(args, stdout=subprocess.DEVNULL)
def check_xfce_panel(self):
try:
xfce_panel = subprocess.check_output(["which", "xfce4-panel-profiles"]).strip()
except subprocess.CalledProcessError:
return False
return True
def cancel_install(self, button):
print("Cancelling Install")
Gtk.main_quit()
return False
def get_files(self, from_folder, target_folder, target):
theme_files = {}
for root, dirs, files in os.walk(from_folder):
if root[-1] != "/":
root = root + "/"
loc = root.find(target)
to_dir = root[loc+len(target):]
for folder in dirs:
if os.path.islink(os.path.join(root,folder)):
from_file = "{}{}".format(root, folder)
to_file = "{}{}{}".format(target_folder,to_dir, folder)
theme_files[from_file] = to_file
for name in files:
from_file = "{}{}".format(root, name)
to_file = "{}{}{}".format(target_folder,to_dir, name)
theme_files[from_file] = to_file
return theme_files
# Set toggle handling
def set_install_theme(self, toggle):
if self.install_theme:
self.install_theme = False
self.total_size_kb = self.total_size_kb - self.theme_size_kb
self.theme_size.set_label("{} k".format(0))
self.remaining_size.set_label("{:.0f} k".format(int(self.available_kb - self.total_size_kb - self.theme_size_kb)))
self.total_size.set_label("{} k".format(self.total_size_kb))
else:
self.install_theme = True
self.total_size_kb = self.total_size_kb + self.theme_size_kb
self.theme_size.set_label("{} k".format(self.theme_size_kb))
self.remaining_size.set_label("{:.0f} k".format(int(self.available_kb - self.total_size_kb + self.theme_size_kb)))
self.total_size.set_label("{} k".format(self.total_size_kb))
def set_install_icons(self, toggle):
if self.install_icons:
self.install_icons = False
self.total_size_kb = self.total_size_kb - self.icons_size_kb
self.icons_size.set_label("{} k".format(0))
self.remaining_size.set_label("{:.0f} k".format(int(self.available_kb - self.total_size_kb - self.icons_size_kb)))
self.total_size.set_label("{} k".format(self.total_size_kb))
else:
self.install_icons = True
self.total_size_kb = self.total_size_kb + self.icons_size_kb
self.icons_size.set_label("{} k".format(self.icons_size_kb))
self.remaining_size.set_label("{:.0f} k".format(int(self.available_kb - self.total_size_kb + self.icons_size_kb)))
self.total_size.set_label("{} k".format(self.total_size_kb))
def set_install_cursors(self, toggle):
if self.install_cursors:
self.install_cursors = False
self.total_size_kb = self.total_size_kb - self.cursors_size_kb
self.cursors_size.set_label("{} k".format(0))
self.remaining_size.set_label("{:.0f} k".format(int(self.available_kb - self.total_size_kb - self.cursors_size_kb)))
self.total_size.set_label("{} k".format(self.total_size_kb))
else:
self.install_cursors = True
self.total_size_kb = self.total_size_kb + self.cursors_size_kb
self.cursors_size.set_label("{} k".format(self.cursors_size_kb))
self.remaining_size.set_label("{:.0f} k".format(int(self.available_kb - self.total_size_kb + self.cursors_size_kb)))
self.total_size.set_label("{} k".format(self.total_size_kb))
def set_install_background(self, toggle):
if self.install_background:
self.install_background = False
else:
self.install_background = True
def set_install_sounds(self, toggle):
if self.install_sounds:
self.install_sounds = False
self.total_size_kb = self.total_size_kb - self.sounds_size_kb
self.sounds_size.set_label("{} k".format(0))
self.remaining_size.set_label("{:.0f} k".format(int(self.available_kb - self.total_size_kb - self.sounds_size_kb)))
self.total_size.set_label("{} k".format(self.total_size_kb))
else:
self.install_sounds = True
self.total_size_kb = self.total_size_kb + self.sounds_size_kb
self.sounds_size.set_label("{} k".format(self.sounds_size_kb))
self.remaining_size.set_label("{:.0f} k".format(int(self.available_kb - self.total_size_kb + self.sounds_size_kb)))
self.total_size.set_label("{} k".format(self.total_size_kb))
def set_install_fonts(self, toggle):
if self.install_fonts:
self.install_fonts = False
self.total_size_kb = self.total_size_kb - self.fonts_size_kb
self.fonts_size.set_label("{} k".format(0))
self.remaining_size.set_label("{:.0f} k".format(int(self.available_kb - self.total_size_kb - self.fonts_size_kb)))
self.total_size.set_label("{} k".format(self.total_size_kb))
else:
self.install_fonts = True
self.total_size_kb = self.total_size_kb + self.fonts_size_kb
self.fonts_size.set_label("{} k".format(self.fonts_size_kb))
self.remaining_size.set_label("{:.0f} k".format(int(self.available_kb - self.total_size_kb + self.fonts_size_kb)))
self.total_size.set_label("{} k".format(self.total_size_kb))
def set_change_thunar(self, toggle):
if self.thunar:
self.thunar = False
else:
self.thunar = True
def set_change_terminal(self, toggle):
if self.terminal_colors:
self.terminal_colors = False
else:
self.terminal_colors = True
def set_change_bash(self, toggle):
if self.bash:
self.bash = False
else:
self.bash = True
def set_change_zsh(self, toggle):
if self.zsh:
self.zsh = False
else:
self.zsh = True
def set_change_panel(self, toggle):
if self.panel:
self.panel = False
else:
self.panel = True
app = InstallGUI()
Gtk.main()