Skip to content

Commit

Permalink
Modified Image icon
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniDiazTech committed Dec 1, 2020
1 parent 5257b99 commit 5e24789
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
Binary file modified __pycache__/widgets.cpython-38.pyc
Binary file not shown.
Binary file added icons/terminal-iconx14.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/terminal-iconx24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 10 additions & 3 deletions widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@ def __init__(self):
["#434758", "#434758"],
["#ffffff", "#ffffff"], # font color for group names
# border line color for current tab
["#ff5555", "#ff5555"],
["#bc13fe", "#bc13fe"], # Group down color
# border line color for other tab and odd widgets
["#8d62a9", "#8d62a9"],
["#668bd7", "#668bd7"], # color for the even widgets
["#e1acff", "#e1acff"]] # window name

self.termite = "termite"

def init_widgets_list(self):
Expand All @@ -40,9 +41,15 @@ def init_widgets_list(self):
background=self.colors[0]
),
widget.Image(
filename="~/.config/qtile/icons/python.png",
filename="~/.config/qtile/icons/terminal-iconx14.png",
mouse_callbacks={
'Button1': lambda qtile: qtile.cmd_spawn('dmenu_run')}
'Button1': lambda qtile: qtile.cmd_spawn('dmenu_run -p "Run: "')}
),
widget.Sep(
linewidth=0,
padding=5,
foreground=self.colors[2],
background=self.colors[0]
),
widget.GroupBox(
font="Ubuntu Bold",
Expand Down

0 comments on commit 5e24789

Please sign in to comment.