mirror of
https://github.com/GRFreire/dotfiles.git
synced 2026-01-10 04:19:38 +00:00
rofi: update config to the new version
This commit is contained in:
parent
54bcc48b0f
commit
cc8b3734f8
@ -18,7 +18,7 @@ from libqtile.lazy import lazy
|
|||||||
MOD = "mod4"
|
MOD = "mod4"
|
||||||
ALT = "mod1"
|
ALT = "mod1"
|
||||||
TERMINAL = "alacritty"
|
TERMINAL = "alacritty"
|
||||||
LAUNCHER = "rofi -show drun"
|
LAUNCHER = "rofi -icon-theme 'Paper' -show-icons -show drun"
|
||||||
WEB = "firefox"
|
WEB = "firefox"
|
||||||
FILE_MANAGER = "nautilus -w"
|
FILE_MANAGER = "nautilus -w"
|
||||||
CLIPBOARD_MANAGER = "rofi -modi \"clipboard:greenclip print\" -show clipboard -run-command '{cmd}'"
|
CLIPBOARD_MANAGER = "rofi -modi \"clipboard:greenclip print\" -show clipboard -run-command '{cmd}'"
|
||||||
|
|||||||
@ -15,91 +15,138 @@
|
|||||||
* Author: Benjamin Stauss
|
* Author: Benjamin Stauss
|
||||||
* User: me-benni
|
* User: me-benni
|
||||||
*
|
*
|
||||||
|
* Co-Author: Guilherme Freire
|
||||||
|
* User: GRFreire
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
configuration {
|
||||||
|
modi: "window,run,drun";
|
||||||
|
show-icons: false;
|
||||||
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
black: #000000;
|
black: #000000;
|
||||||
red: #eb6e67;
|
red: #eb6e67;
|
||||||
green: #95ee8f;
|
green: #95ee8f;
|
||||||
yellow: #f8c456;
|
yellow: #f8c456;
|
||||||
blue: #6eaafb;
|
blue: #6eaafb;
|
||||||
mangenta: #d886f3;
|
mangenta: #d886f3;
|
||||||
cyan: #6cdcf7;
|
cyan: #6cdcf7;
|
||||||
emphasis: #50536b;
|
emphasis: #50536b;
|
||||||
text: #dfdfdf;
|
text: #dfdfdf;
|
||||||
text-alt: #b2b2b2;
|
text-alt: #b2b2b2;
|
||||||
fg: #abb2bf;
|
fg: #abb2bf;
|
||||||
bg: #282c34;
|
bg: #282c34;
|
||||||
|
|
||||||
spacing: 0;
|
spacing: 0;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|
||||||
font: "Knack Nerd Font 14";
|
font: "Knack Nerd Font 14";
|
||||||
text-color: @text;
|
text-color: @text;
|
||||||
}
|
|
||||||
|
|
||||||
mainbox {
|
|
||||||
background-color: #282c34ee;
|
|
||||||
padding: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
inputbar {
|
|
||||||
margin: 0px 0px 20px 0px;
|
|
||||||
children: [prompt, textbox-prompt-colon, entry, case-indicator];
|
|
||||||
}
|
|
||||||
|
|
||||||
prompt {
|
|
||||||
text-color: @blue;
|
|
||||||
}
|
|
||||||
|
|
||||||
textbox-prompt-colon {
|
|
||||||
expand: false;
|
|
||||||
str: ":";
|
|
||||||
text-color: @text-alt;
|
|
||||||
}
|
|
||||||
|
|
||||||
entry {
|
|
||||||
margin: 0px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
listview {
|
|
||||||
spacing: 5px;
|
|
||||||
dynamic: true;
|
|
||||||
scrollbar: false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
element {
|
element {
|
||||||
padding: 10px 5px 5px;
|
cursor: pointer;
|
||||||
text-color: @text-alt;
|
padding: 7px 5px 5px;
|
||||||
highlight: bold #95ee8f; /* green */
|
text-color: @text-alt;
|
||||||
border-radius: 3px;
|
highlight: bold #95ee8f;
|
||||||
|
border: 0;
|
||||||
|
border-radius: 3px;
|
||||||
|
text-color: @text;
|
||||||
}
|
}
|
||||||
|
|
||||||
element selected {
|
element-icon {
|
||||||
background-color: @emphasis;
|
background-color: transparent;
|
||||||
text-color: @text;
|
margin: 0 10px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
element urgent, element selected urgent {
|
element-icon {
|
||||||
text-color: @red;
|
background-color: transparent;
|
||||||
|
margin: 0 10px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
element active, element selected active {
|
element-text {
|
||||||
text-color: @purple;
|
padding: 3px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
element.selected.normal {
|
||||||
|
background-color: @emphasis;
|
||||||
|
}
|
||||||
|
|
||||||
|
element normal.normal, element alternate.normal {
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @text;
|
||||||
|
}
|
||||||
|
|
||||||
|
element normal.urgent, element alternate.urgent {
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @red;
|
||||||
|
}
|
||||||
|
|
||||||
|
element normal.active, element alternate.active {
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @mangenta;
|
||||||
|
}
|
||||||
|
|
||||||
|
window {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
mainbox {
|
||||||
|
border: 0;
|
||||||
|
background-color: #282c34dd;
|
||||||
|
padding: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
message {
|
message {
|
||||||
padding: 10px 5px 5px;
|
padding: 10px 5px 5px;
|
||||||
margin: 0 0 10px 0;
|
margin: 0 0 10px 0;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
background-color: @emphasis;
|
background-color: @emphasis;
|
||||||
border: 1px;
|
border: 2px;
|
||||||
border-color: @cyan;
|
border-color: @blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
textbox {
|
||||||
|
text-color: @text;
|
||||||
|
}
|
||||||
|
|
||||||
|
listview {
|
||||||
|
border: 0;
|
||||||
|
dynamic: true;
|
||||||
|
scrollbar: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
button selected {
|
button selected {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
background-color: @emphasis;
|
background-color: @emphasis;
|
||||||
|
}
|
||||||
|
|
||||||
|
inputbar {
|
||||||
|
margin: 0px 0px 20px 0px;
|
||||||
|
children: [prompt, textbox-prompt-colon, entry, case-indicator];
|
||||||
|
}
|
||||||
|
|
||||||
|
entry {
|
||||||
|
cursor: text;
|
||||||
|
placeholder-color: @text-alt;
|
||||||
|
placeholder: "";
|
||||||
|
text-color: @text;
|
||||||
|
margin: 0px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
prompt {
|
||||||
|
text-color: @blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
textbox-prompt-colon {
|
||||||
|
text-color: inherit;
|
||||||
|
expand: false;
|
||||||
|
str: ":";
|
||||||
|
text-color: @text-alt;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user