mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-10 20:11:55 +01:00
27 lines
580 B
Text
27 lines
580 B
Text
<!
|
|
local modi = {
|
|
"window",
|
|
"drun",
|
|
"combi",
|
|
}
|
|
-- Only enable nheko mode if rofi-nheko is installed.
|
|
if opt.fileExists(
|
|
os.getenv "HOME"
|
|
.. "/.local/lib/rofi/librofi_nheko.so"
|
|
) then
|
|
table.insert(modi, "nheko")
|
|
end
|
|
|
|
-- Only enable rofi-emoji if installed.
|
|
if opt.fileExists "/usr/lib/rofi/emoji.so" then
|
|
table.insert(modi, "emoji")
|
|
end
|
|
!>
|
|
configuration {
|
|
modi: "<% table.concat(modi, ",") %>";
|
|
font: "<% opt.font %> 12";
|
|
show-icons: true;
|
|
icon-theme: "<% opt.icon_theme %>";
|
|
combi-modi: "drun,nheko,window,run";
|
|
}
|
|
@theme "catppuccin-sidebar.rasi"
|