Questions tagged [dmenu]

dmenu implements an X11 popup window listing lines from stdin, and allows you to select and edit them with the keyboard. Used for minimalist interaction, for example by i3wm.

44 questions
20
votes
4 answers

i3 dmenu does not browse $PATH

I want to run a shell script ~/.local/bin/test.sh via dmenu. If I run dmenu via $mod+D and browse for the entry test.sh I couldn't find it. The path ~/.local/bin is already set to my $PATH variable in ~/.profile $ echo…
Hölderlin
  • 1,160
  • 5
  • 14
  • 34
11
votes
4 answers

Transparently run wine programs

When I want to run a wine program I have to type e.g. $ wine ~/.wine/drive_c/Program\ Files/TextAloud/TextAloudMP3.exe Would it be possible to run directly TextAloudMP3? I mean not only from command line (I could create alias) but in whole graphical…
xralf
  • 16,149
  • 29
  • 101
  • 149
10
votes
1 answer

How can I access menu bar items alike hud (unity)?

Currently I have archlinux installed, but I used Ubuntu in the past. What I really miss from ubuntu is the HUD from unity which allows hotkey searching for top menu bar items from the current application, without the need for using the mouse or…
milarepa
  • 1,456
  • 2
  • 16
  • 22
9
votes
1 answer

Dmenu does not start some programms (e.g., emacs) -- is there a log file?

I'm running dwm with dmenu under Arch Linux. While dmenu is working, it doesn't start some programs, e.g., emacs, although it shows the command with auto-completion. When I start them in the terminal, it works fine. What can I do? Is there an error…
Michael
  • 243
  • 3
  • 8
6
votes
1 answer

How to reset dmenu app launching preferences in i3

I accidentally selected "terminal" instead of "background" in dmenu when I launched a GUI applications. Now, every time I launch the app I get an unwanted terminal. How do I reset the dmenu preference?
crypdick
  • 1,593
  • 4
  • 14
  • 23
6
votes
3 answers

How to get installed application to be detected by rofi?

I recently installed an IDE into /opt (I know that some recommend putting software into /usr/local but this was entirely self-contained) because the application was not available in my ditro's repositories and I had to install it from a .sh file.…
anon2332
  • 101
  • 1
  • 1
  • 5
5
votes
1 answer

Exclude windows with no static id from Compton

I use archlinux and compton. I read this in the wiki: Exclude all windows with no name from compton using the following options: $ compton --focus-exclude "! name~=" But this does not work. It gives me that error…
linuxNewbie
  • 151
  • 1
  • 1
  • 9
4
votes
0 answers

How do I get Rofi/Dmenu to read my $PATH?

I have a very similar issue to How to get installed application to be detected by rofi? - or rather a followup question. My question is, outside of symlinking, is there a way to export my path for Rofi or similar apps? It is already set in my…
hicksca
  • 41
  • 1
  • 3
4
votes
1 answer

Eliminate from dmenu the programs that cannot be launched

I use i3 with dmenu. Is it possible to prevent from showing up the programs that cannot be launched via dmenu? (e.g. top, ps, ls etc...)
Reyx_0
  • 911
  • 3
  • 12
  • 23
4
votes
2 answers

How do I include shortcuts for the gnome setting program and wine apps in dmenu?

I would like to use dmenu as my launcher instead of the Gnome3-overlay that is displayed after hitting the super-key. From the Gnome3-overlay, I am able to launch both apps, gnome settings, and wine programs. In dmenu, I am so far only able to…
joelostblom
  • 1,889
  • 2
  • 19
  • 32
3
votes
3 answers

Dmenu Processes Forked by Bash?

I was looking at the output of pstree, and realised that processes that I started using dmenu seem to fork from bash. What is the reasoning behind this? And is there any way I can make dmenu behave like gmrun and other application launchers and…
user22531
3
votes
1 answer

dmenu: how to create submenu

In a simple way, how to create a submenu of dmenu, manpage doesn't help much also archlinux, gentoo wikipage, Use case: I'd to pip a list of note files to dmenu and then list all that files under a submenu of dmenu. Steps: open dmenu type:…
Tuyen Pham
  • 1,765
  • 1
  • 16
  • 46
3
votes
1 answer

i3 run dmenu in different modes for each workspace

Assume I would open a new workspace e.g. to run a terminal in the next unused workspace. i3-msg workspace $(($(i3-msg -t get_workspaces | tr , '\n' | grep '"num":' | cut -d : -f 2 | sort -rn | head -1) + 1)) &&…
Hölderlin
  • 1,160
  • 5
  • 14
  • 34
3
votes
1 answer

Custom font with dmenu_run in i3

I am trying to change the font of dmenu. I am running the i3 window manager. $ dmenu_run -v /bin/bash: line 1: dmenu-4.5,: command not found $ dmenu_run -fn "-xos4-terminus-medium-r-*-*-14-*" …
ILikeTurtles
  • 536
  • 2
  • 7
  • 17
2
votes
1 answer

Piping continuous output into rofi

I'm trying to write a bash script to pipe strings into rofi. These strings are continuously generated by a function gen_x. The function gen_x sometimes (only when a condition is met) outputs new strings. I currently implement the gen_x-function with…
1
2 3