mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-06-04 09:23:12 +00:00
14 lines
321 B
Python
14 lines
321 B
Python
import os
|
|
import subprocess
|
|
|
|
from libqtile import hook
|
|
|
|
@hook.subscribe.startup_once
|
|
def autostart():
|
|
home = os.path.expanduser('~/.config/qtile/autostart.sh')
|
|
subprocess.Popen([home])
|
|
|
|
@hook.subscribe.startup
|
|
def runner():
|
|
import subprocess
|
|
subprocess.Popen(['xsetroot', '-cursor_name', 'left_ptr'])
|