ENH make rofi-dev colorful

This commit is contained in:
Nathan Dwarshuis 2020-05-02 00:25:57 -04:00
parent b93e122230
commit 070a6b3e81
1 changed files with 7 additions and 1 deletions

View File

@ -99,7 +99,13 @@ devSecrets = concatMap (\x -> ["-s", x])
] ]
runDevMenu :: X () runDevMenu :: X ()
runDevMenu = spawnDmenuCmd "rofi-dev" $ devSecrets ++ ["--"] runDevMenu = spawnDmenuCmd "rofi-dev" $ devSecrets ++ rofiArgs
where
rofiArgs =
[ "--"
, "-theme-str"
, "'#element.selected.normal { background-color: #999933; }'"
]
runBwMenu :: X () runBwMenu :: X ()
runBwMenu = spawnDmenuCmd "rofi-bw" ["-c", "--"] runBwMenu = spawnDmenuCmd "rofi-bw" ["-c", "--"]