diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2021-11-01 10:43:26 -0600 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2021-11-01 10:43:26 -0600 |
| commit | 4430386d66822feae4a9828b3dabf9114301adce (patch) | |
| tree | ddf53e8a72cb32a6d052aa1bd33aaf05460d4b26 /src/Internal/DMenu.hs | |
| parent | 70b1acbce0c873ec9643ccfb59352b73d2521bfb (diff) | |
| download | rde-4430386d66822feae4a9828b3dabf9114301adce.tar.gz rde-4430386d66822feae4a9828b3dabf9114301adce.tar.bz2 rde-4430386d66822feae4a9828b3dabf9114301adce.zip | |
Add passmenu integrations.
Diffstat (limited to 'src/Internal/DMenu.hs')
| -rw-r--r-- | src/Internal/DMenu.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Internal/DMenu.hs b/src/Internal/DMenu.hs index 1ece347..c5cac49 100644 --- a/src/Internal/DMenu.hs +++ b/src/Internal/DMenu.hs @@ -5,6 +5,6 @@ import XMonad.Util.Run import Control.Monad runDMenu :: X () -runDMenu = void $ do +runDMenu = void $ safeSpawn "/usr/bin/dmenu_run" [ "-p", "Execute ", "-l", "12", "-dim", "0.4"] |