merge
This commit is contained in:
commit
1677533c1d
1 changed files with 4 additions and 3 deletions
|
|
@ -10,15 +10,16 @@ from libqtile import layout, bar, widget, hook
|
||||||
from libqtile.lazy import lazy
|
from libqtile.lazy import lazy
|
||||||
from libqtile.utils import guess_terminal
|
from libqtile.utils import guess_terminal
|
||||||
from typing import List # noqa: F401from typing import List # noqa: F401
|
from typing import List # noqa: F401from typing import List # noqa: F401
|
||||||
|
from volume import Volume
|
||||||
|
|
||||||
from qtile_extras import widget
|
from qtile_extras import widget
|
||||||
from qtile_extras.widget.decorations import PowerLineDecoration
|
from qtile_extras.widget.decorations import PowerLineDecoration
|
||||||
|
|
||||||
|
|
||||||
from qutils import get_num_screens
|
from qutils import get_num_screens
|
||||||
|
|
||||||
mod = "mod4" # Sets mod key to SUPER/WINDOWS
|
mod = "mod4" # Sets mod key to SUPER/WINDOWS
|
||||||
myTerm = "alacritty" # My terminal of choice
|
myTerm = "alacritty" # My terminal of choice
|
||||||
myBrowser = "firefox" # My browser of choice
|
myBrowser = "firefox" #"qutebrowser" # My browser of choice
|
||||||
|
|
||||||
class Colors:
|
class Colors:
|
||||||
bg = ["#282828", "#3c3836"] #background
|
bg = ["#282828", "#3c3836"] #background
|
||||||
|
|
@ -324,7 +325,7 @@ def init_widgets_list():
|
||||||
foreground = Colors.bg,
|
foreground = Colors.bg,
|
||||||
background = Colors.green,
|
background = Colors.green,
|
||||||
format = "%Y-%m-%d %a %H:%M ",
|
format = "%Y-%m-%d %a %H:%M ",
|
||||||
padding = 5
|
padding = 5,
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
return widgets_list
|
return widgets_list
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue