mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-10-30 18:58:16 +00:00
ac5395484c
This commit fixes the style issues introduced in bcac517
according to the output
from black and autopep8.
Details: https://deepsource.io/gh/GradienceTeam/Gradience/transform/6ddad5a3-f1ef-445c-abf4-81c018383272/
66 lines
2.9 KiB
Python
66 lines
2.9 KiB
Python
from pathlib import Path
|
|
|
|
from yapsy.IPlugin import IPlugin
|
|
|
|
TEMPLATE = """
|
|
/*
|
|
* =========================================================================== *
|
|
* This file was overwritten by the firefox_gnome_theme plugin from Gradience *
|
|
* *
|
|
* Report issue at: https://github.com/GradienceTeam/Plugins/issues/new/choose *
|
|
* Join us on matrix: https://matrix.to/#/#Gradience:matrix.org *
|
|
* =========================================================================== *
|
|
*/
|
|
|
|
:root {{
|
|
--gnome-browser-before-load-background: {window_bg_color};
|
|
--gnome-accent-bg: {accent_bg_color};
|
|
--gnome-accent: {accent_color};
|
|
--gnome-toolbar-background: {window_bg_color};
|
|
--gnome-toolbar-color: {window_fg_color};
|
|
--gnome-toolbar-icon-fill: {window_fg_color};
|
|
--gnome-inactive-toolbar-color: {window_bg_color};
|
|
--gnome-inactive-toolbar-border-color: {headerbar_border_color};
|
|
--gnome-inactive-toolbar-icon-fill: {window_fg_color};
|
|
--gnome-menu-background: {dialog_bg_color};
|
|
--gnome-headerbar-background: {headerbar_bg_color};
|
|
--gnome-button-destructive-action-background: {destructive_bg_color};
|
|
--gnome-entry-color: {view_fg_color};
|
|
--gnome-inactive-entry-color: {view_fg_color};
|
|
--gnome-switch-slider-background: {view_bg_color};
|
|
--gnome-switch-active-slider-background: {accent_color};
|
|
--gnome-inactive-tabbar-tab-background: {window_bg_color};
|
|
--gnome-inactive-tabbar-tab-active-background: rgba(255,255,255,0.025);
|
|
--gnome-tabbar-tab-background: {window_bg_color};
|
|
--gnome-tabbar-tab-hover-background: rgba(255,255,255,0.025);
|
|
--gnome-tabbar-tab-active-background: rgba(255,255,255,0.075);
|
|
--gnome-tabbar-tab-active-hover-background: rgba(255,255,255,0.100);
|
|
--gnome-tabbar-tab-active-background-contrast: rgba(255,255,255,0.125);
|
|
}}
|
|
"""
|
|
|
|
|
|
class FirefoxGnomeTheme2Plugin(IPlugin):
|
|
plugin_id = "firefox_gnome_theme"
|
|
title = "Firefox GNOME Theme"
|
|
author = "Gradience Team"
|
|
template = TEMPLATE
|
|
|
|
def give_preset_settings(self, preset_settings, custom_settings=None):
|
|
self.variables = preset_settings["variables"]
|
|
|
|
def validate(self):
|
|
return False, None
|
|
|
|
def open_settings(self):
|
|
return False
|
|
|
|
def apply(self, dark_theme=False):
|
|
try:
|
|
with (
|
|
next(Path("~/.mozilla/firefox").expanduser().glob("*.*"))
|
|
/ "chrome/firefox-gnome-theme/customChrome.css"
|
|
).open("w") as f:
|
|
f.write(self.template.format(**self.variables))
|
|
except OSError:
|
|
pass
|