Skip to content

Instantly share code, notes, and snippets.

@mnl
Created September 13, 2019 16:49
Show Gist options
  • Save mnl/307f9735c019980cc84bca6242d443f1 to your computer and use it in GitHub Desktop.
Save mnl/307f9735c019980cc84bca6242d443f1 to your computer and use it in GitHub Desktop.
Rofi config (like dmenu)
rofi.combi-modi: window,drun,ssh
rofi.modi: combi,run,window,ssh
rofi.terminal: lxterminal
rofi.show-icons: true
rofi.theme: solarized
rofi.theme: ~/.config/rofi/dmenu.rasi
/**
* ROFI Color theme
* User: Qball
* Copyright: Dave Davenport
*/
* {
background-color: rgba ( 0, 43, 55, 100 % );
border-color: White;
text-color: White;
font: "Times New Roman 12";
}
#window {
anchor: south;
location: south;
width: 100%;
padding: 5px;
children: [ horibox ];
}
#horibox {
orientation: horizontal;
children: [ prompt, entry, listview ];
}
#prompt {
margin: 0 0.5em 0 0;
}
#listview {
layout: horizontal;
spacing: 5px;
lines: 100;
}
#entry {
expand: false;
width: 10em;
}
#element {
padding: 0px 2px;
}
#element selected {
background-color: SteelBlue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment