aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Control/SremConfig.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Control/SremConfig.hs')
-rw-r--r--src/Control/SremConfig.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Control/SremConfig.hs b/src/Control/SremConfig.hs
index 18ff0da..852ff27 100644
--- a/src/Control/SremConfig.hs
+++ b/src/Control/SremConfig.hs
@@ -23,6 +23,8 @@
module Control.SremConfig ( getCacheDirectory
, intervals
+ , notificationSound
+ -- , alwaysRunningInX11Process
) where
import System.Directory (getHomeDirectory)
@@ -34,5 +36,12 @@ getCacheDirectory :: IO FilePath
getCacheDirectory = getHomeDirectory >>= \h ->
return $ h </> ".cache" </> "srem"
+notificationSound :: IO FilePath
+notificationSound = getHomeDirectory >>= \h ->
+ return $ h </> "lib" </> "annex" </> "doc" </> "sounds" </> "beep.wav"
+
intervals :: [Int]
intervals = [60, 15, 0]
+
+-- alwaysRunningInX11Process :: String
+-- alwaysRunningInX11Process = "xbindkeys"