Fix assets placement for binary #91

Merged
pitmutt merged 168 commits from rav001 into milestone2 2024-07-12 16:34:51 +00:00
Showing only changes of commit d37269bf44 - Show all commits

View file

@ -90,6 +90,13 @@ copyAddress a =
createProcess_ "toClipboard" $
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/")
-- | Bound a value to the 0..1 range, used for progress reporting on UIs
validBarValue :: Float -> Float
validBarValue = clamp (0, 1)