aboutsummaryrefslogtreecommitdiff
path: root/scripts/.local/bin/personal/wrapper/dmenu
blob: 29948457070af1111e5109ff7c1c4b4ba0b446ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

# A wrapper for dmenu to always have it spawn with certain properties
# TODO: Get rid of this script

source "/home/me/.cache/wal/colors.sh"

/usr/local/bin/dmenu \
-fn "JetBrains Mono:size=19:pixelsize=24" \
-nb "$background" \
-nf "$foreground" \
-sb "$primary" \
-sf "$background" \
-x "10" \
-y "10" \
-z "2860" \
-h "44" \
-i

# -m 0 \