mirror of
https://gitlab.com/manzerbredes/i3-colors.git
synced 2025-04-06 08:36:24 +02:00
Add support for random colors themes
This commit is contained in:
parent
22494da413
commit
7a50d7deba
2 changed files with 41 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import config, theme, os, argparse, subprocess
|
import config, theme, os, argparse, subprocess,sys
|
||||||
|
|
||||||
##### Utils Functions #####
|
##### Utils Functions #####
|
||||||
def log(msg,title=""):
|
def log(msg,title=""):
|
||||||
|
@ -18,11 +18,15 @@ def apply(args):
|
||||||
if args.restart:
|
if args.restart:
|
||||||
subprocess.Popen("i3-msg restart".split(),stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
subprocess.Popen("i3-msg restart".split(),stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
#######################
|
#######################
|
||||||
|
def aleatory(args):
|
||||||
|
t=theme.random_theme().as_dict()
|
||||||
|
config.apply(os.environ["HOME"]+"/.config/i3/config",t)
|
||||||
|
if args.restart:
|
||||||
|
subprocess.Popen("i3-msg restart".split(),stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
##### Extract Theme #####
|
##### Extract Theme #####
|
||||||
def extract(args):
|
def extract(args):
|
||||||
theme=config.extract_theme(args.config_path)
|
t=config.extract_theme(args.config_path)
|
||||||
theme.dump()
|
print(t.as_yaml())
|
||||||
#######################
|
#######################
|
||||||
|
|
||||||
##### Parse Arguments #####
|
##### Parse Arguments #####
|
||||||
|
@ -39,6 +43,15 @@ argsExtractParser.add_argument('config_path', type=str, nargs='?',
|
||||||
help='Extract theme from config file.')
|
help='Extract theme from config file.')
|
||||||
argsExtractParser.set_defaults(func=extract)
|
argsExtractParser.set_defaults(func=extract)
|
||||||
|
|
||||||
args = argsMainParser.parse_args()
|
argsAleatoryParser = argsSubParsers.add_parser("aleatory")
|
||||||
args.func(args)
|
argsAleatoryParser.add_argument('-r', '--restart' ,action='store_true', help='Restart i3 after applying theme.')
|
||||||
|
argsAleatoryParser.set_defaults(func=aleatory)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
args = argsMainParser.parse_args()
|
||||||
|
if len(sys.argv)>1:
|
||||||
|
args.func(args)
|
||||||
|
else:
|
||||||
|
argsMainParser.print_help()
|
||||||
###########################
|
###########################
|
||||||
|
|
26
src/theme.py
26
src/theme.py
|
@ -1,4 +1,4 @@
|
||||||
import yaml,re, sys
|
import yaml,re, sys,random
|
||||||
|
|
||||||
def configure(theme):
|
def configure(theme):
|
||||||
"""
|
"""
|
||||||
|
@ -72,6 +72,7 @@ def load(theme_file):
|
||||||
validate(theme)
|
validate(theme)
|
||||||
return(theme)
|
return(theme)
|
||||||
|
|
||||||
|
|
||||||
class ThemeBuilder:
|
class ThemeBuilder:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.theme={"meta": {"description": "Generated From i3-colors"},
|
self.theme={"meta": {"description": "Generated From i3-colors"},
|
||||||
|
@ -80,9 +81,13 @@ class ThemeBuilder:
|
||||||
self.vars=list()
|
self.vars=list()
|
||||||
self.vars_values=dict()
|
self.vars_values=dict()
|
||||||
|
|
||||||
def dump(self):
|
def as_yaml(self):
|
||||||
print(yaml.dump(self.theme))
|
return(yaml.dump(self.theme))
|
||||||
|
|
||||||
|
def as_dict(self):
|
||||||
|
return(self.theme)
|
||||||
|
|
||||||
|
|
||||||
def get(self,key):
|
def get(self,key):
|
||||||
if key in self.vars:
|
if key in self.vars:
|
||||||
return(self.vars_values[key])
|
return(self.vars_values[key])
|
||||||
|
@ -119,4 +124,17 @@ class ThemeBuilder:
|
||||||
self.vars.append(name)
|
self.vars.append(name)
|
||||||
self.vars_values[name]=value
|
self.vars_values[name]=value
|
||||||
|
|
||||||
|
def random_theme():
|
||||||
|
r= lambda: "#"+hex(random.randint(0,16777214))[2:]
|
||||||
|
t=ThemeBuilder()
|
||||||
|
t.parse("client.focused {} {} {} {} {}".format(r(),r(),r(),r(),r()))
|
||||||
|
t.parse("client.unfocused {} {} {} {} {}".format(r(),r(),r(),r(),r()))
|
||||||
|
t.parse("client.urgent {} {} {} {} {}".format(r(),r(),r(),r(),r()))
|
||||||
|
t.parse("background {}".format(r()))
|
||||||
|
t.parse("statusline {}".format(r()))
|
||||||
|
t.parse("separator {}".format(r()))
|
||||||
|
t.parse("focused_workspace {} {} {}".format(r(),r(),r()))
|
||||||
|
t.parse("active_workspace {} {} {}".format(r(),r(),r()))
|
||||||
|
t.parse("inactive_workspace {} {} {}".format(r(),r(),r()))
|
||||||
|
t.parse("urgent_workspace {} {} {}".format(r(),r(),r()))
|
||||||
|
return(t)
|
||||||
|
|
Loading…
Add table
Reference in a new issue