added vs code extension autoinstall

This commit is contained in:
paul-loedige
2020-11-22 03:02:20 +01:00
parent fa36257082
commit 90e43d50d7
3 changed files with 19 additions and 7 deletions
+12 -6
View File
@@ -30,13 +30,22 @@
from typing import List # noqa: F401
from libqtile import bar, layout, widget
import os
import subprocess
from libqtile import bar, layout, widget, hook
from libqtile.config import Click, Drag, Group, Key, Screen
from libqtile.lazy import lazy
mod = "mod4"
terminal = "termite"
#region autostart
@hook.subscribe.startup_once
def autostart():
layout = os.path.expanduser('~/.config/qtile/layout.sh')
subprocess.call([layout])
#endregion
#region key_and_mouse_bindings
keys = [
@@ -102,16 +111,13 @@ layouts = [
border_focus = '#00ff00',
border_width = 2,
new_at_current = True,
name = 'monadtall',
),
layout.Max(
name = 'max',
),
layout.Floating(),
layout.Max(),
layout.MonadWide(
border_focus = '#00ff00',
border_width = 2,
new_at_current = True,
name = 'monadwide',
),
]
#endregion