Dmenu Build With A Patch Stop Showing Password In Clear Text 2025_05_15_...
seen from Italy
seen from Malaysia
seen from India
seen from Slovakia
seen from China
seen from United Kingdom
seen from China
seen from Italy
seen from United States
seen from Italy
seen from China
seen from China
seen from China
seen from China
seen from China

seen from Italy
seen from Thailand
seen from China

seen from Italy
seen from Singapore
Dmenu Build With A Patch Stop Showing Password In Clear Text 2025_05_15_...
Linux Fancy Scripts To Mount And Unmount Disk Via Dmenu 2025_05_14_03:48:50
Dmenu Applied Patch For Multiple Items Select Feature 2024_11_23_04:19:06
Linux Man Pages Via Dmenu And Zathura 2024_03_20_04:45:44
Bash Plus Dmenu Plus Mpv To Fetch Youtube Video 2023_10_22_03:49:22
Here’s a cute little wrapper for dmenu, similar to dmenu_run. It captures the output of the command and puts it in your clipboard. If there was a nonzero exit status or any output to stderr, it also gives notifications saying so.
#!/bin/bash ERRFILE=$(mktemp) # make a temp file to grab errors OUTPUT=$(dmenu_path | dmenu -p "clip from:" "$@" | ${SHELL:-"/bin/sh"} 2>"$ERRFILE") # grab the output and save any errors in a temp file RETURN="$?" # grab the return code ERR=$(cat "$ERRFILE") # get the errors from the temp file rm "$ERRFILE" if [[ -z "$OUTPUT" ]]; then notify-send -u critical "nothing copied to clipboard" else echo -n "$OUTPUT" | xclip -i -selection clipboard \ && notify-send "copied to clipboard:" "$(xclip -o -selection clipboard)" fi if (( RETURN != 0 )) || [[ -n "$ERR" ]]; then notify-send -u critical "exit $RETURN" "$ERR" fi
dmenu on arch
cd projects/my/suckless/
wget http://dl.suckless.org/tools/dmenu-5.0.tar.gz
tar -xvf dmenu-5.0.tar.gz
cd dmenu-5.0
make
sudo make install
alt+p opens dmenu and then you can type the name of app you want
C l i p m e n u
clipmenu is a simple clipboard manager using dmenu (or rofi with CM_LAUNCHER=rofi) and xsel.