Skip to content

Commit

Permalink
use dmenu instead of dmenu2
Browse files Browse the repository at this point in the history
  • Loading branch information
odknt committed Jun 30, 2019
1 parent bbfd0a2 commit 0f929ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.def.h
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ static MouseShortcut mshortcuts[] = {
* Open url command
*/
static char *openurlcmd[] = { "/bin/sh", "-c",
"xurls | dmenu -fn monospace:size=10 -h 24 -l 10 | xargs -r xdg-open",
"xurls | dmenu -fn monospace:size=10 -b -p 'xdg-open:' -i -nb '#101010' | xargs -r xdg-open",
"externalpipe", NULL };

/* Internal keyboard shortcuts. */
Expand Down
2 changes: 1 addition & 1 deletion st.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
#define ISDELIM(u) (u && wcschr(worddelimiters, u))

/* constants */
#define ISO14755CMD "dmenu -fn monospace:size=10 -h 24 -p codepoint: </dev/null"
#define ISO14755CMD "dmenu -fn monospace:size=10 -b -i -nb '#101010' -p 'codepoint:' </dev/null"

enum term_mode {
MODE_WRAP = 1 << 0,
Expand Down

0 comments on commit 0f929ba

Please sign in to comment.