From 264f54e94a73578c1bb8163b5256737c74aa5171 Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Tue, 12 Dec 2023 22:35:22 +0100 Subject: [PATCH] added dropdown for org agenda --- qtile/.config/qtile/Groups.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/qtile/.config/qtile/Groups.py b/qtile/.config/qtile/Groups.py index 0ca00c9..efd065d 100644 --- a/qtile/.config/qtile/Groups.py +++ b/qtile/.config/qtile/Groups.py @@ -115,13 +115,14 @@ groups.append( match = Match(wm_class='telegram-desktop') ), DropDown( - 'Calendar', - 'surf https://cloud.ploedige.com/apps/calendar/dayGridMonth/now', + 'Org Agenda (Calendar)', + 'emacsclient -c -e \'(org-agenda-list)\'', height = 0.5, width = 0.8, x = 0.1, on_focus_lost_hide=True, opacity=1, + match = Match(wm_class='emacs') ) ]) ) @@ -160,6 +161,6 @@ keys.extend([ desc="open the dropdown for Qalculate!"), Key(['mod1','control'],'d',lazy.group['scratchpad'].dropdown_toggle('Deepl'), desc="open the dropdown for Deepl"), - Key(['mod1','control'],'k',lazy.group['scratchpad'].dropdown_toggle('Calendar'), - desc="open the dropdown for Nextcloud Calendar") + Key(['mod1','control'],'k',lazy.group['scratchpad'].dropdown_toggle('Org Agenda (Calendar)'), + desc="open the dropdown for my Org Agenda") ])