summaryrefslogtreecommitdiff
path: root/.script/favs_dmenu_run.sh
blob: 7a927a1353b95d2c8eb229fd728ad6b59a86a828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

favorites='
chromium
discord
firefox
steam
'

{
	printf '%s\n' "$favorites"
	dmenu_path
} | awk '!seen[$0]++' | dmenu "$@" | ${SHELL:-/bin/sh} &