diff options
| author | Chandler J <cjustice2000@gmail.com> | 2023-12-11 20:38:07 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-11 20:38:07 -0700 |
| commit | c11972edf3e08112d94083f0d3ccb7abec77df19 (patch) | |
| tree | 9fa7aef82b2fe2ad0f457acc7c821f14c1eef7d1 /src/update_rofi.py | |
| parent | f029061dad768be5e7c39c1f6152660a0bbaf050 (diff) | |
| parent | c8f2a2635ec90499bd2ec75969f222f398c1bbc5 (diff) | |
Merge pull request #1 from chandlerj/refactor
Refactor
Diffstat (limited to 'src/update_rofi.py')
| -rw-r--r-- | src/update_rofi.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/update_rofi.py b/src/update_rofi.py new file mode 100644 index 0000000..a7d3aa6 --- /dev/null +++ b/src/update_rofi.py @@ -0,0 +1,23 @@ +import color_engine + +def updateRofiTheme(config_path: str, colors: list, compliments: list): + print('[bold red]Updating Rofi color scheme') + data = '' + with open(config_path, 'r') as file: + data = file.readlines() + bg = color_engine.hexToRGB(colors[1]) + fg = color_engine.hexToRGB(compliments[1]) + lbg = color_engine.hexToRGB(colors[0]) + lfg = color_engine.hexToRGB(colors[0]) + for i,line in enumerate(data): + if 'background: ' in line and i == 23: + data[i] = ' background: rgba({}, {}, {}, 70%);\n'.format(bg[0], bg[1], bg[2]) + if 'foreground: ' in line and i == 28: + data[i] = ' foreground: rgba({}, {}, {}, 100%);\n'.format(fg[0], fg[1], fg[2]) + if 'lightbg: ' in line and i == 12: + data[i] = ' lightbg: rgba({}, {}, {}, 100%);\n'.format(lbg[0], lbg[1], lgb[2]) + if 'lightfg: ' in line and i == 7: + data[i] = ' lightfg: rgba({}, {}, {}, 100%);\n'.format(lfg[0], lfg[1], lfg[2]) + with open(config_path, 'w') as file: + file.writelines(data) + |
