1
0
mirror of https://github.com/balkian/dotfiles.git synced 2025-08-23 08:02:19 +00:00

Integrated rofi

This commit is contained in:
J. Fernando Sánchez
2016-01-10 12:55:09 +01:00
parent 18af6196b3
commit e68ff6e85e
3 changed files with 28 additions and 5 deletions

11
scripts/.bin/runmenu Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
if command -v rofi >/dev/null 2>&1;
then
launcher="rofi -show run"
else
launcher="dmenu_run -fn "-*-cure-medium-*-*-*-11-*-*-*-*-*-*-*" -nb "#101010" -nf "#5f5f5f" -sb "#191919" -sf "#b72f62" -b"
fi
$launcher "$@"

12
scripts/.bin/winmenu.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
if command -v rofi >/dev/null 2>&1;
then
program="rofi -show window"
else
program="i3-winmenu.py"
fi
$program "$@"