aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustine Smithies <justine@smithies.me.uk>2023-08-23 17:24:25 +0100
committerJustine Smithies <justine@smithies.me.uk>2023-08-23 17:24:25 +0100
commit4a15654f0c97b77a78e7e51c279d94575975c96b (patch)
treecd99e634dece94a99c970676c4a1b62c4626cfa5
parentccf6e7d6fd699b207ac911f1af92c441dd0ded60 (diff)
Removed prefix cmd_ from cmd_spawn on calendar widget
-rw-r--r--.config/qtile/widgets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/qtile/widgets.py b/.config/qtile/widgets.py
index 1072c09..ed9659e 100644
--- a/.config/qtile/widgets.py
+++ b/.config/qtile/widgets.py
@@ -45,8 +45,8 @@ primary_widgets = [
update_interval=1,
**widget_defaults,
mouse_callbacks={
- 'Button1': lambda: qtile.cmd_spawn(os.path.expanduser("~/.config/qtile/statusbar/calendar.sh show"), shell=True),
- 'Button3': lambda: qtile.cmd_spawn(os.path.expanduser("~/.config/qtile/statusbar/calendar.sh edit"), shell=True)
+ 'Button1': lambda: qtile.spawn(os.path.expanduser("~/.config/qtile/statusbar/calendar.sh show"), shell=True),
+ 'Button3': lambda: qtile.spawn(os.path.expanduser("~/.config/qtile/statusbar/calendar.sh edit"), shell=True)
}
),
widget.Spacer(),