12 lines
330 B
Bash
Executable File
12 lines
330 B
Bash
Executable File
#!/bin/sh
|
|
# while read -r line; do export "$line"; done < /home/fs/scale_vars
|
|
dpi="100"
|
|
|
|
if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
|
|
# wofi --show run
|
|
dmenu_run -l 15
|
|
else
|
|
# rofi -modi drun -show drun Papirus -dpi $dpi -sorting-method fzf -sort -matching fuzzy -show-icons -icon-theme Papirus
|
|
dmenu_run -l 15
|
|
fi
|