From ff30625189e749d89a9ff4e5e8d4da86d64b2783 Mon Sep 17 00:00:00 2001 From: ThanosApollo Date: Sun, 18 Sep 2022 13:42:01 +0300 Subject: Add extra comments --- .config/qtile/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index d7a63bc..edb8485 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, -- cgit v1.2.3 From f9e58112c3bcdc4f364677f825857aea29da7992 Mon Sep 17 00:00:00 2001 From: ThanosApollo Date: Sun, 18 Sep 2022 16:21:43 +0300 Subject: Fix imports --- .config/qtile/keys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3 From a0e04ed1bdf3007c004a75ca7d5a04ad4634dbba Mon Sep 17 00:00:00 2001 From: ThanosApollo Date: Mon, 19 Sep 2022 03:30:49 +0300 Subject: Add weather --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index 2e195b8..5cfc33e 100644 --- a/.zshrc +++ b/.zshrc @@ -40,6 +40,9 @@ alias cc='config commit -m' #pacman | yay alias yeet='yay -Rsc' +# weather +alias weather="curl wttrn.in" + #aliases alias ls='ls -la --color=auto' alias sb='sudo systemctl start bluetooth' -- cgit v1.2.3 From 6aaba12f2924339cf76ce95b7a1d75dbb4b2d877 Mon Sep 17 00:00:00 2001 From: ThanosApollo Date: Mon, 19 Sep 2022 03:31:42 +0300 Subject: Fix typo --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 5cfc33e..2a9035e 100644 --- a/.zshrc +++ b/.zshrc @@ -41,7 +41,7 @@ alias cc='config commit -m' alias yeet='yay -Rsc' # weather -alias weather="curl wttrn.in" +alias weather="curl wttr.in" #aliases alias ls='ls -la --color=auto' -- cgit v1.2.3