13 lines
453 B
Plaintext
Raw Normal View History

2024-09-04 00:54:15 +06:00
#!/bin/sh
2025-04-18 21:40:38 +06:00
while read -r line; do export "$line"; done < /home/fs/scale_vars
dpi="125"
2025-02-15 20:38:47 +06:00
if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
2025-04-18 21:40:38 +06:00
rofi -modi drun -show drun Papirus -dpi $dpi -sorting-method fzf -sort -matching fuzzy -show-icons -icon-theme Papirus
2025-02-18 01:36:51 +06:00
# wofi --show run
2025-04-18 21:40:38 +06:00
# dmenu_run -l 15
2025-02-15 20:38:47 +06:00
else
2025-04-18 21:40:38 +06:00
rofi -modi drun -show drun Papirus -dpi $dpi -sorting-method fzf -sort -matching fuzzy -show-icons -icon-theme Papirus
# dmenu_run -l 15
2025-02-15 20:38:47 +06:00
fi