Add base addressbook to GUI #102
1 changed files with 7 additions and 0 deletions
|
@ -90,6 +90,13 @@ copyAddress a =
|
||||||
createProcess_ "toClipboard" $
|
createProcess_ "toClipboard" $
|
||||||
shell $ "echo " ++ T.unpack (addy a) ++ " | xclip -r -selection clipboard"
|
shell $ "echo " ++ T.unpack (addy a) ++ " | xclip -r -selection clipboard"
|
||||||
|
|
||||||
|
-- | Get current user and build zenith path
|
||||||
|
getZenithPath :: IO String
|
||||||
|
getZenithPath = do
|
||||||
|
d <- getHomeDirectory
|
||||||
|
let homeDirectory = d
|
||||||
|
return (homeDirectory ++ "/Zenith/")
|
||||||
pitmutt marked this conversation as resolved
Outdated
|
|||||||
|
|
||||||
-- | Bound a value to the 0..1 range, used for progress reporting on UIs
|
-- | Bound a value to the 0..1 range, used for progress reporting on UIs
|
||||||
validBarValue :: Float -> Float
|
validBarValue :: Float -> Float
|
||||||
validBarValue = clamp (0, 1)
|
validBarValue = clamp (0, 1)
|
||||||
|
|
Loading…
Reference in a new issue
This line is redundant, use
homeDirectory <- getHomeDirectory
directly.