summaryrefslogtreecommitdiff
path: root/src/update_polybar.py
diff options
context:
space:
mode:
authorChandler J <cjustice2000@gmail.com>2023-12-11 20:38:07 -0700
committerGitHub <noreply@github.com>2023-12-11 20:38:07 -0700
commitc11972edf3e08112d94083f0d3ccb7abec77df19 (patch)
tree9fa7aef82b2fe2ad0f457acc7c821f14c1eef7d1 /src/update_polybar.py
parentf029061dad768be5e7c39c1f6152660a0bbaf050 (diff)
parentc8f2a2635ec90499bd2ec75969f222f398c1bbc5 (diff)
Merge pull request #1 from chandlerj/refactor
Refactor
Diffstat (limited to 'src/update_polybar.py')
-rw-r--r--src/update_polybar.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/update_polybar.py b/src/update_polybar.py
new file mode 100644
index 0000000..ff395c6
--- /dev/null
+++ b/src/update_polybar.py
@@ -0,0 +1,24 @@
+
+
+def updatePolybarTheme(config_path: str, colors: list, compliments: list):
+ print('[bold red]Updating polybar color scheme')
+ data = ''
+ with open(config_path, 'r') as file:
+ data = file.readlines()
+ for i,line in enumerate(data):
+ #update colors
+ if "background =" in line and i == 19:
+ data[i] = 'background = ' + colors[0] + '\n'
+ if "background-alt =" in line and i == 20:
+ data[i] = 'background-alt = ' + colors[1] + '\n'
+ if "foreground =" in line and i == 21:
+ data[i] = 'foreground = ' + compliments[0] + '\n'
+ if "primary =" in line and i == 22:
+ data[i] = 'primary = ' + compliments[1] + '\n'
+ if "secondary =" in line and i == 23:
+ data[i] = 'secondary = ' + compliments[2] + '\n'
+ if "disabled =" in line and i == 25:
+ data[i] = 'disabled = ' + colors[2] + '\n'
+ with open(config_path, 'w') as file:
+ file.writelines(data)
+