mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
29 lines
754 B
Python
29 lines
754 B
Python
from libqtile import hook
|
|
from settings.keys import mod, keys
|
|
from settings.groups import groups
|
|
from settings.layouts import layouts, floating_layout
|
|
from settings.widgets import widget_defaults, extension_defaults
|
|
from settings.screens import screens
|
|
from settings.mouse import mouse
|
|
from settings.rules import dgroups_app_rules
|
|
from settings.path import qtile_path
|
|
|
|
from os import path
|
|
import subprocess
|
|
|
|
# Autostart
|
|
@hook.subscribe.startup_once
|
|
def autostart():
|
|
subprocess.call([path.join(qtile_path, 'autostart.sh')])
|
|
|
|
# Basic settings
|
|
main = None
|
|
dgroups_key_binder = None
|
|
dgroups_app_rules = []
|
|
follow_mouse_focus = True
|
|
bring_front_click = False
|
|
cursor_warp = True
|
|
auto_fullscreen = True
|
|
focus_on_window_activation = 'urgent'
|
|
wmname = 'LG3D'
|