mirror of
https://gitlab.com/manzerbredes/i3-colors.git
synced 2025-04-06 08:36:24 +02:00
Now i3 theme can be generated from config files.
This commit is contained in:
parent
8d62ee31f1
commit
f3b050df7f
3 changed files with 93 additions and 18 deletions
|
@ -1,4 +1,4 @@
|
||||||
import re,tempfile,shutil
|
import re,tempfile,shutil,theme
|
||||||
|
|
||||||
config_keys=["client.focused",
|
config_keys=["client.focused",
|
||||||
"client.focused_inactive",
|
"client.focused_inactive",
|
||||||
|
@ -66,7 +66,31 @@ def extract(config_file):
|
||||||
f.close()
|
f.close()
|
||||||
tmp.close()
|
tmp.close()
|
||||||
return(tmp.name)
|
return(tmp.name)
|
||||||
|
|
||||||
|
|
||||||
|
def extract_theme(config_file):
|
||||||
|
"""
|
||||||
|
Return a ThemeBuilder object of the config_file file.
|
||||||
|
"""
|
||||||
|
f=open(config_file,"r")
|
||||||
|
build=theme.ThemeBuilder()
|
||||||
|
in_colors=False
|
||||||
|
for line_orig in f:
|
||||||
|
line=no_comment(line_orig)
|
||||||
|
is_theme_line=False
|
||||||
|
for key in config_keys:
|
||||||
|
if contains(".*"+key+"\s",line):
|
||||||
|
is_theme_line=True
|
||||||
|
if contains(".*colors",line):
|
||||||
|
in_colors=True
|
||||||
|
if is_theme_line or in_colors:
|
||||||
|
build.parse(line_orig) # Seems to by strange to have comment here
|
||||||
|
if contains(".*}",line) and in_colors:
|
||||||
|
in_colors=False
|
||||||
|
f.close()
|
||||||
|
return(build)
|
||||||
|
|
||||||
|
|
||||||
def write_theme(tmp_config,theme):
|
def write_theme(tmp_config,theme):
|
||||||
"""
|
"""
|
||||||
Write the theme in a temporary file
|
Write the theme in a temporary file
|
||||||
|
|
|
@ -9,21 +9,36 @@ def log(msg,title=""):
|
||||||
print(msg)
|
print(msg)
|
||||||
###########################
|
###########################
|
||||||
|
|
||||||
|
|
||||||
##### Parse Arguments #####
|
|
||||||
args_parser = argparse.ArgumentParser(description='I3 Window Manager Colors Themer.')
|
|
||||||
args_parser.add_argument('theme_path', type=str, nargs='?',
|
|
||||||
help='I3 YAML theme path.')
|
|
||||||
args_parser.add_argument('-r', '--restart' ,action='store_true', help='Restart i3 after applying theme.')
|
|
||||||
args = args_parser.parse_args()
|
|
||||||
###########################
|
|
||||||
|
|
||||||
##### Apply Theme #####
|
##### Apply Theme #####
|
||||||
loaded_theme=theme.load(args.theme_path)
|
def apply(args):
|
||||||
config.apply(os.environ["HOME"]+"/.config/i3/config",loaded_theme)
|
loaded_theme=theme.load(args.theme_path)
|
||||||
for meta_key,meta_value in loaded_theme["meta"].items():
|
config.apply(os.environ["HOME"]+"/.config/i3/config",loaded_theme)
|
||||||
log(meta_value,title=meta_key.title())
|
for meta_key,meta_value in loaded_theme["meta"].items():
|
||||||
if args.restart:
|
log(meta_value,title=meta_key.title())
|
||||||
subprocess.Popen("i3-msg restart".split(),stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
if args.restart:
|
||||||
|
subprocess.Popen("i3-msg restart".split(),stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
#######################
|
#######################
|
||||||
|
|
||||||
|
##### Extract Theme #####
|
||||||
|
def extract(args):
|
||||||
|
theme=config.extract_theme(args.config_path)
|
||||||
|
theme.dump()
|
||||||
|
#######################
|
||||||
|
|
||||||
|
##### Parse Arguments #####
|
||||||
|
argsMainParser = argparse.ArgumentParser(description='I3 Window Manager Colors Themer.')
|
||||||
|
argsSubParsers = argsMainParser.add_subparsers()
|
||||||
|
argsApplyParser = argsSubParsers.add_parser("apply")
|
||||||
|
argsApplyParser.add_argument('theme_path', type=str, nargs='?',
|
||||||
|
help='I3 YAML theme path.')
|
||||||
|
argsApplyParser.add_argument('-r', '--restart' ,action='store_true', help='Restart i3 after applying theme.')
|
||||||
|
argsApplyParser.set_defaults(func=apply)
|
||||||
|
|
||||||
|
argsExtractParser = argsSubParsers.add_parser("extract")
|
||||||
|
argsExtractParser.add_argument('config_path', type=str, nargs='?',
|
||||||
|
help='Extract theme from config file.')
|
||||||
|
argsExtractParser.set_defaults(func=extract)
|
||||||
|
|
||||||
|
args = argsMainParser.parse_args()
|
||||||
|
args.func(args)
|
||||||
|
###########################
|
||||||
|
|
38
src/theme.py
38
src/theme.py
|
@ -56,7 +56,7 @@ def validate(theme):
|
||||||
for key,value in value.items():
|
for key,value in value.items():
|
||||||
if not(key in ["focused","focused_inactive","unfocused","urgent","child_border"]):
|
if not(key in ["focused","focused_inactive","unfocused","urgent","child_border"]):
|
||||||
inv_key(key)
|
inv_key(key)
|
||||||
|
|
||||||
def load(theme_file):
|
def load(theme_file):
|
||||||
"""
|
"""
|
||||||
Load a theme as a dict():
|
Load a theme as a dict():
|
||||||
|
@ -71,3 +71,39 @@ def load(theme_file):
|
||||||
theme=configure(theme)
|
theme=configure(theme)
|
||||||
validate(theme)
|
validate(theme)
|
||||||
return(theme)
|
return(theme)
|
||||||
|
|
||||||
|
class ThemeBuilder:
|
||||||
|
def __init__(self):
|
||||||
|
self.theme={"meta": {"description": "Generated From i3-colors"},
|
||||||
|
"window_colors":dict(),
|
||||||
|
"bar_colors":dict()}
|
||||||
|
def dump(self):
|
||||||
|
print(yaml.dump(self.theme))
|
||||||
|
|
||||||
|
def parse(self,line):
|
||||||
|
if re.match("client.*",line):
|
||||||
|
tokens=line.split()
|
||||||
|
key=tokens[0].replace("client.","")
|
||||||
|
tokens.pop(0)
|
||||||
|
subkeys=["border","background","text","indicator","child_border"]
|
||||||
|
self.theme["window_colors"][key]=dict()
|
||||||
|
for token in tokens:
|
||||||
|
self.theme["window_colors"][key][subkeys[0]]=token
|
||||||
|
subkeys.pop(0)
|
||||||
|
elif re.match(".*background.*",line):
|
||||||
|
self.theme["bar_colors"]["background"]=line.split()[1]
|
||||||
|
elif re.match(".*statusline.*",line):
|
||||||
|
self.theme["bar_colors"]["statusline"]=line.split()[1]
|
||||||
|
elif re.match(".*separator.*",line):
|
||||||
|
self.theme["bar_colors"]["separator"]=line.split()[1]
|
||||||
|
elif re.match(".*_workspace.*",line):
|
||||||
|
tokens=line.split()
|
||||||
|
key=tokens[0]
|
||||||
|
tokens.pop(0)
|
||||||
|
subkeys=["border","background","text"]
|
||||||
|
self.theme["bar_colors"][key]=dict()
|
||||||
|
for token in tokens:
|
||||||
|
self.theme["bar_colors"][key][subkeys[0]]=token
|
||||||
|
subkeys.pop(0)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue