Compare commits
No commits in common. "a921139295aef7056630c453832f2e8209c8b095" and "cee5ad8addbae0b38de754808daf16409a939718" have entirely different histories.
a921139295
...
cee5ad8add
10
app/Main.hs
10
app/Main.hs
@ -14,9 +14,6 @@ import UnliftIO.Directory
|
|||||||
import Data.Foldable
|
import Data.Foldable
|
||||||
(asum)
|
(asum)
|
||||||
|
|
||||||
import System.Environment
|
|
||||||
(lookupEnv)
|
|
||||||
|
|
||||||
import qualified Operations
|
import qualified Operations
|
||||||
|
|
||||||
import Data.Query
|
import Data.Query
|
||||||
@ -38,8 +35,5 @@ commands = subparser
|
|||||||
|
|
||||||
main :: IO ()
|
main :: IO ()
|
||||||
main = do
|
main = do
|
||||||
env <- Environment <$> (lookupEnv "BUUKA_HOME" >>= maybe defaultHome pure)
|
env <- Environment <$> getXdgDirectory XdgData "buuka"
|
||||||
execParser (info (commands <**> helper) (fullDesc <> progDesc description)) >>= runBuukaM env
|
execParser (info (commands <**> helper) fullDesc) >>= runBuukaM env
|
||||||
where
|
|
||||||
defaultHome = getXdgDirectory XdgData "buuka"
|
|
||||||
description = "Bookmarks manager. Stores the bookmarks in a yaml file under your xdg directory or in a folder specified by the BUUKA_HOME environment variable"
|
|
||||||
|
Loading…
Reference in New Issue
Block a user