diff options
author | Pavan Rikhi <pavan.rikhi@gmail.com> | 2018-03-17 22:48:24 -0400 |
---|---|---|
committer | jao <jao@gnu.org> | 2018-11-21 21:41:35 +0000 |
commit | 4d1402a1a7d87767267d48a77998e4fb13395b31 (patch) | |
tree | 17fd6160dc1fa9c8a0676a94bcf8d19b551c655c /src/Xmobar.hs | |
parent | 9e2a5c7daddf683d4be7c318aefed3da3ea7a89a (diff) | |
download | xmobar-4d1402a1a7d87767267d48a77998e4fb13395b31.tar.gz xmobar-4d1402a1a7d87767267d48a77998e4fb13395b31.tar.bz2 |
Split Modules into Library & Executable Structure
Move the Main module to a new `app` directory. All other modules have
been nested under the `Xmobar` name. Lots of module headers & imports
were updated.
Diffstat (limited to 'src/Xmobar.hs')
-rw-r--r-- | src/Xmobar.hs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/Xmobar.hs b/src/Xmobar.hs index 30ad11e..e4eb4b7 100644 --- a/src/Xmobar.hs +++ b/src/Xmobar.hs @@ -47,24 +47,24 @@ import Data.Bits import Data.Map hiding (foldr, map, filter) import Data.Maybe (fromJust, isJust) -import Bitmap -import Config -import Parsers -import Commands -import Actions -import Runnable -import Signal -import Window -import XUtil -import ColorCache +import Xmobar.Bitmap as Bitmap +import Xmobar.Config +import Xmobar.Parsers +import Xmobar.Commands +import Xmobar.Actions +import Xmobar.Runnable +import Xmobar.Signal +import Xmobar.Window +import Xmobar.XUtil +import Xmobar.ColorCache #ifdef XFT import Graphics.X11.Xft -import MinXft (drawBackground) +import Xmobar.MinXft (drawBackground) #endif #ifdef DBUS -import IPC.DBus +import Xmobar.IPC.DBus #endif -- $main |