mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-05 05:01:43 +00:00
6f07d96ea0
* Added ranger * Update vim airline * Added udiskie and * Updated i3 status * Updated zsh paths to load even when not in a login session
12 lines
237 B
Bash
Executable File
12 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if command -v rofi >/dev/null 2>&1;
|
|
then
|
|
launcher="rofi -show drun"
|
|
else
|
|
launcher="dmenu_run -fn "-*-cure-medium-*-*-*-11-*-*-*-*-*-*-*" -nb "#101010" -nf "#5f5f5f" -sb "#191919" -sf "#b72f62" -b"
|
|
fi
|
|
|
|
$launcher "$@"
|
|
|