aboutsummaryrefslogtreecommitdiff
path: root/scripts/.local/bin/personal/wrapper/dmenu
blob: 6c1229d39b54c6882531d896f85ef895bfae1fa1 (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 "$XDG_CACHE_HOME/wal/colors.sh"

/usr/local/bin/dmenu \
-fn "JetBrainsMono Nerd Font:size=16:pixelsize=21" \
-nb "$background" \
-nf "$foreground" \
-sb "$primary" \
-sf "$background" \
-x "8" \
-y "8" \
-z "2544" \
-h "37" \
-i

# -m 0 \