mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-06-28 04:16:16 +00:00
I hate this
This commit is contained in:
parent
a9846b4ecd
commit
8c7569868d
416 changed files with 1549 additions and 208 deletions
14
configs/qtile/modules/autostart.py
Normal file
14
configs/qtile/modules/autostart.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
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'])
|
Loading…
Add table
Add a link
Reference in a new issue