diff options
author | ThanosApollo <[email protected]> | 2022-08-14 00:58:50 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-08-14 00:58:50 +0300 |
commit | 0cf2f35a9207b03fbd7e1f929136277820a2f848 (patch) | |
tree | 49ffcdaa91dd571c6594ff27ed95491009c9350e /.config | |
parent | 2485b9bc274a1604b798d46643d6a5558702d0bc (diff) |
update path to scripts
Diffstat (limited to '.config')
-rw-r--r-- | .config/qtile/config.py | 15 |
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]) |