summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/qtile/config.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py
index 316018a..6bf8cf6 100644
--- a/.config/qtile/config.py
+++ b/.config/qtile/config.py
@@ -64,7 +64,7 @@ keys = [
lazy.spawn(myTerm),
desc='Launches My Terminal'
),
- Key([mod], "a",
+ Key([mod, "shift"], "a",
lazy.spawn('anki'),
desc='Launch anki'),
Key([mod], "Tab",
@@ -213,7 +213,6 @@ def window_to_next_screen(qtile, switch_group=False, switch_screen=False):
groups = []
-# FOR QWERTY KEYBOARDS
group_names = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0",]
#group_labels = ["1 ", "2 ", "3 ", "4 ", "5 ", "6 ", "7 ", "8 ", "9 ", "0",]
@@ -423,6 +422,12 @@ def init_widgets_list():
icon_size=21,
padding = 10
),
+ widget.Sep(
+ linewidth = 1,
+ padding = 20,
+ foreground = colors[2],
+ background = colors[1]
+ ),
]
return widgets_list
@@ -435,7 +440,7 @@ def init_widgets_screen1():
def init_widgets_screen2():
widgets_screen2 = init_widgets_list()
- return widgets_screen2[:-1]
+ return widgets_screen2[:-2]
widgets_screen1 = init_widgets_screen1()
widgets_screen2 = init_widgets_screen2()
@@ -453,8 +458,8 @@ screens = init_screens()
@hook.subscribe.startup_once
def start_once():
- autostart_path = os.path.expanduser('~/.config/autostart/setup.sh')
- #subprocess.run([autostart_path])
+ autostart_path = os.path.expanduser('~/.config/autostart/autostart.sh')
+ subprocess.run([autostart_path])