11 lines
255 B
Bash
Executable file
11 lines
255 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ $(hostname) = "syl" ]; then
|
|
style="laptop"
|
|
else
|
|
style="desktop"
|
|
#echo "this is not hidpi"
|
|
fi
|
|
|
|
lolcate | rofi -dmenu -p "File Search:" -i -matching regex -theme ~/.config/rofi/launchers-git/$style-rbw.rasi | xargs -r0 xdg-open
|