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