diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/kmein.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/kmein.hs b/config/kmein.hs index 5a121bb..397f1c8 100644 --- a/config/kmein.hs +++ b/config/kmein.hs @@ -118,7 +118,7 @@ myKeymap "S" = fmap snd . saveAttachment myKeymap "o" = saveAttachment >=> \case (Nothing, q') -> return q' (Just filePath, q') -> - q' <$ runCommand ("xdg-open " <> filePath) + q' <$ callProcess "xdg-open" [filePath] myKeymap "q" = \q -> q <$ raiseSignal sigINT |