diff options
author | jao <jao@gnu.org> | 2025-02-11 04:40:34 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2025-02-11 04:40:34 +0000 |
commit | 298663bc0140a2b4877ec64b444b57521fb01716 (patch) | |
tree | a8b263627d2ccb74287d4166556a83306d9af7f8 /src/Xmobar/Run/Runnable.hs | |
parent | 7390d759240785f660cbdb0ca55898732aa12c98 (diff) | |
download | xmobar-298663bc0140a2b4877ec64b444b57521fb01716.tar.gz xmobar-298663bc0140a2b4877ec64b444b57521fb01716.tar.bz2 |
prototype for onClick method in Exec
Diffstat (limited to 'src/Xmobar/Run/Runnable.hs')
-rw-r--r-- | src/Xmobar/Run/Runnable.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Xmobar/Run/Runnable.hs b/src/Xmobar/Run/Runnable.hs index f89f901..a95e70b 100644 --- a/src/Xmobar/Run/Runnable.hs +++ b/src/Xmobar/Run/Runnable.hs @@ -32,6 +32,7 @@ instance Exec Runnable where start (Run a) = start a alias (Run a) = alias a trigger (Run a) = trigger a + onClick (Run a) = onClick a instance Show Runnable where show (Run x) = "Run " ++ show x |