mirror of
https://github.com/imarkoff/Marble-shell-theme.git
synced 2025-09-17 16:57:56 -07:00
Split install.py into several files Part of code for creating a directory from copy_files was removed due to the availability of such a function in standard Python libraries Tried to make theme installation process less dependent on the project root folder
13 lines
337 B
Python
13 lines
337 B
Python
# folder definitions
|
|
temp_folder = ".temp"
|
|
gnome_folder = "gnome-shell"
|
|
temp_gnome_folder = f"{temp_folder}/{gnome_folder}"
|
|
tweaks_folder = "tweaks"
|
|
themes_folder = "~/.themes"
|
|
raw_theme_folder = "theme"
|
|
scripts_folder = "scripts"
|
|
|
|
# files definitions
|
|
gnome_shell_css = f"{temp_gnome_folder}/gnome-shell.css"
|
|
colors_json = "colors.json"
|