diff --git a/README.md b/README.md index c0292f8..e1456b1 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,7 @@ - [ ] borders and separation of colors # Bugs + + +# NextTime +- [ ] transparent color [0] diff --git a/config.py b/config.py index 6b98809..202b5fd 100644 --- a/config.py +++ b/config.py @@ -14,6 +14,25 @@ shift = "shift" alt = "mod1" home = os.path.expanduser('~') +#tapeta = '/home/godot/.config/qtile/wallpapers/theater_by_flaviobollo.jpg' +tapeta = '/home/godot/.config/qtile/wallpapers/McEscher-Street.jpg' + +colors = [["#293136", "#293136"], #bg_dim [0] + ["#333C43", "#333C43"], #bg_0 [1] + ["#3A464C", "#3A464C"], #bg_1 [2] + ["#434F55", "#434F55"], #bg_2 [3] + ["#4D5960", "#4D5960"], #bg_3 [4] + ["#555F66", "#555F66"], #bg_4 [5] + ["#7FBBB3", "#7FBBB3"], #blue [6] + ["#A7C080", "#A7C080"], #green [7] + ["#DBBC7F", "#DBBC7F"], #yellow [8] + ["#E69875", "#E69875"], #orange [9] + ['#ED8082', '#ED8080'], #red [10] + ['#00000000', '#00000000'], #transparent [11] +] + + + keys = [ #Kills focused window Key([mod], "q", lazy.window.kill(), desc="Kill focused window"), @@ -136,20 +155,6 @@ widget_defaults = dict( ) extension_defaults = widget_defaults.copy() -colors = [["#293136", "#293136"], #bg_dim [0] - ["#333C43", "#333C43"], #bg_0 [1] - ["#3A464C", "#3A464C"], #bg_1 [2] - ["#434F55", "#434F55"], #bg_2 [3] - ["#4D5960", "#4D5960"], #bg_3 [4] - ["#555F66", "#555F66"], #bg_4 [5] - ["#7FBBB3", "#7FBBB3"], #blue [6] - ["#A7C080", "#A7C080"], #green [7] - ["#DBBC7F", "#DBBC7F"], #yellow [8] - ["#E69875", "#E69875"], #orange [9] - ['#ED8082', '#ED8080'], #red [10] - ['#00000000', '#00000000'], #transparent [11] -] - # Eye candy widgets rounded_left = { @@ -192,6 +197,7 @@ group_box = widget.GroupBox( **rounded_left, ) +#spacer needs fixed length so 1 for every screen spacer_main = widget.Spacer( background = colors[11], #transparent **rounded_right, @@ -259,9 +265,9 @@ clock = widget.Clock( screens = [ Screen( - wallpaper='~/.config/qtile/wallpapers/theater_by_flaviobollo.jpg', - wallpaper_mode='fill', - + wallpaper = tapeta, + wallpaper_mode ='stretch' , + left=bar.Gap(5), right=bar.Gap(5), bottom=bar.Gap(5), @@ -283,8 +289,8 @@ screens = [ ), ), Screen( - wallpaper='~/.config/qtile/wallpapers/theater_by_flaviobollo.jpg', - wallpaper_mode='fill', + wallpaper= tapeta, + wallpaper_mode= 'fill', left=bar.Gap(5), right=bar.Gap(5), diff --git a/wallpapers/McEscher-Street.jpg b/wallpapers/McEscher-Street.jpg new file mode 100644 index 0000000..758f5e8 Binary files /dev/null and b/wallpapers/McEscher-Street.jpg differ