blob: f272d816fb69c4ec14ba56374ae2f5a7c4ea89f3 (
plain)
1
2
3
4
5
6
7
8
|
{-# LANGUAGE ExistentialQuantification #-}
module Xmobar.Run.Runnable where
import Xmobar.Run.Commands
data Runnable = forall r . (Exec r,Read r,Show r) => Run r
instance Read Runnable
instance Exec Runnable
|