name: ueberzug version: 0.2.0.0 synopsis: Haskell bindings for ueberzug to display images in the terminal description: This draws the example image for 2 seconds, then clear it and wait for 1 second before exiting . . > import Control.Concurrent > import Graphics.Ueberzug > > main = do > ub <- newUeberzug > -- assert it suceeded > Right () <- > draw ub $ defaultUbConf > { identifier = "75933779_p0" > , path = "./test/75933779_p0.jpg" > , x = 10 > , y = 2 > , width = Just 10 > , height = Just 10 > , scaler = Just FitContain > } > threadDelay 2000000 > > clear ub "75933779_p0" > threadDelay 1000000 . . See the README for more info homepage: https://github.com/akazukin5151/ueberzug-hs Bug-reports: https://github.com/akazukin5151/ueberzug-hs/issues license: MIT license-file: LICENSE author: Tsui Yik Ching maintainer: tsuiyikching@protonmail.com copyright: 2022 Tsui Yik Ching category: Graphics build-type: Simple extra-source-files: README.md extra-doc-files: CHANGELOG.md cabal-version: 1.18 library hs-source-dirs: src exposed-modules: Graphics.Ueberzug build-depends: base >= 4.7 && < 5, process >= 1.6.13.2 && < 1.7 default-language: Haskell2010 ghc-options: -Weverything -Wno-missing-exported-signatures -Wno-missing-import-lists -Wno-missed-specialisations -Wno-all-missed-specialisations -Wno-unsafe -Wno-safe -Wno-missing-safe-haskell-mode -Wno-missing-local-signatures -Wno-monomorphism-restriction -Wno-implicit-prelude -Wno-prepositive-qualified-module -Wno-missing-deriving-strategies source-repository head type: git location: https://github.com/akazukin5151/ueberzug-hs test-suite tests type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Main.hs build-depends: base, ueberzug ghc-options: -fno-ignore-asserts default-language: Haskell2010