diff options
| author | Josh Rahm <rahm@boson.lan> | 2021-11-24 12:48:13 -0700 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2022-10-09 12:19:45 -0600 |
| commit | bc8f075ebc6ebb987a6c6a20e8a30df241197073 (patch) | |
| tree | e0e8368fa236ae646ecee20d86733003c2c997e6 /src | |
| parent | 1cb68e4c242a945896617a5d03c53117ab28fb53 (diff) | |
| download | rde-bc8f075ebc6ebb987a6c6a20e8a30df241197073.tar.gz rde-bc8f075ebc6ebb987a6c6a20e8a30df241197073.tar.bz2 rde-bc8f075ebc6ebb987a6c6a20e8a30df241197073.zip | |
Added some better support for Void Linux.
Void Linux doesn't have spotify in its official repos. Going with open
source solutions, I can use spotifyd, but had to hack my spotify-control
scripts to get it to work.
Void linux also puts all its binaries in /bin for some reason. Not sure
I like that, but I had to change the DMenu module to support that.
Diffstat (limited to 'src')
| -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 d91c7ba..850612e 100644 --- a/src/Internal/DMenu.hs +++ b/src/Internal/DMenu.hs @@ -17,7 +17,7 @@ data Colors = runDMenu :: X () runDMenu = void $ - safeSpawn "/usr/bin/dmenu_run" [ + safeSpawn "dmenu_run" [ "-p", "Execute ", "-l", "12", "-dim", "0.4"] runDMenuPrompt :: String -> Maybe String -> [String] -> X String |