Solved rofi

Is there a rofi guru in-house? Rofi used to work for me until the last update and rofi no longer likes settings in .Xdefaults. It loads unknown colors to me and so far I am unable to find the file holding those default colors.
Following the guide here, I could not locate rofi.rasi or rofi.config.

Cheers.
 
I've always used rofi config on $HOME/.config/rofi. Rofi changed the config format some time ago and I had to update it.
My config is very simple, I can paste it if you want.
 
I've always used rofi config on $HOME/.config/rofi. Rofi changed the config format some time ago and I had to update it.
My config is very simple, I can paste it if you want.
If you don't mind please post your config file. Thank you.
 
$HOME/.config/rofi/config.rasi:
Code:
configuration {
    font: "SF Pro Display 11";
    show-icons: true;
    icon-theme: "kora";
    drun-display-format: "{name}";
    sidebar-mode: true;
    dpi: 96;
    display-run: "?";
    display-calc: "?";
    display-drun: "? ";
}

@theme "viyoriya"
listview {
    lines: 10;
    columns: 3;
}

window {
    width: 40%;
}

element-text {
    background-color: inherit;
    text-color:       inherit;
}

The theme used is this one, if you want to use it, download the file to $HOME/.config/rofi/themes.
Mind that I also use x11/rofi-calc.
I run rofi with this:
Code:
rofi -modi drun,calc,run -show drun -sort
 
Back
Top