aboutsummaryrefslogtreecommitdiff
path: root/scripts/.local/bin/personal/wrapper/dmenu
blob: 62b93f4107c67a74f0fb8db04f3c2cd77cdcc7e9 (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 "12" \
-y "12" \
-z "2536" \
-h "37" \
-i

# -m 0 \