summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/qtile/config.py4
-rw-r--r--.config/qtile/keys.py2
-rw-r--r--.zshrc3
3 files changed, 6 insertions, 3 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py
index 9e78bc3..3fd1da0 100644
--- a/.config/qtile/config.py
+++ b/.config/qtile/config.py
@@ -35,6 +35,7 @@ my_keys = MyKeys(mod="mod4",
keys = my_keys.init_keys()
dgroups_key_binder = simple_key_binder("mod4")
+## Groups and layouts
groups = []
group_names = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0",]
group_labels = ["Ⅰ", "Ⅱ", "Ⅲ", "Ⅳ", "Ⅴ", "Ⅵ", "Ⅶ", "Ⅷ", "Ⅸ", "Ⅹ",]
@@ -70,7 +71,7 @@ layouts = [
layout.Max(**layout_theme)
]
-# WIDGETS FOR THE BAR
+# Widgets
def init_widgets_defaults():
return dict(font="Noto Sans",
@@ -82,7 +83,6 @@ widget_defaults = init_widgets_defaults()
def init_widgets_list():
widgets_list = [
-
widget.Sep(
linewidth = 1,
padding = 6,
diff --git a/.config/qtile/keys.py b/.config/qtile/keys.py
index efd1bb0..8667d2e 100644
--- a/.config/qtile/keys.py
+++ b/.config/qtile/keys.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-from libqtile.config import Key, Screen
+from libqtile.config import Key
from libqtile.command import lazy
diff --git a/.zshrc b/.zshrc
index 2e195b8..2a9035e 100644
--- a/.zshrc
+++ b/.zshrc
@@ -40,6 +40,9 @@ alias cc='config commit -m'
#pacman | yay
alias yeet='yay -Rsc'
+# weather
+alias weather="curl wttr.in"
+
#aliases
alias ls='ls -la --color=auto'
alias sb='sudo systemctl start bluetooth'