diff options
Diffstat (limited to 'src/Xmobar/X11/Actions.hs')
-rw-r--r-- | src/Xmobar/X11/Actions.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Xmobar/X11/Actions.hs b/src/Xmobar/X11/Actions.hs index 03e58ad..87c03ed 100644 --- a/src/Xmobar/X11/Actions.hs +++ b/src/Xmobar/X11/Actions.hs @@ -18,7 +18,7 @@ import Text.Regex (Regex, subRegex, mkRegex, matchRegex) import Graphics.X11.Types (Button) data Action = Spawn [Button] String - deriving (Eq) + deriving (Eq, Show) runAction :: Action -> IO () runAction (Spawn _ s) = void $ system (s ++ "&") |