diff options
-rw-r--r-- | .config/qtile/config.py | 5 | ||||
-rw-r--r-- | .xinitrc | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 9729b8b..be3b9b8 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -32,6 +32,11 @@ def init_layout_theme(): "border_normal": dracula["bg"], } [email protected]_once +def autostart(): + autostart_script = os.path.expanduser('~/.config/autostart/autostart.sh') + subprocess.Popen([autostart_script]) + layout_theme = init_layout_theme() layouts = [ @@ -1,4 +1,3 @@ #!/bin/sh /usr/bin/qtile start -~/.config/autostart/autostart.sh |