mirror of https://github.com/Madz258/dotfiles.git
Add files via upload
This commit is contained in:
parent
aebc7ec98f
commit
f0a8af81b6
|
@ -0,0 +1,14 @@
|
||||||
|
* {
|
||||||
|
background-darker: #1a1b26;
|
||||||
|
backgrounds: #1E2127;
|
||||||
|
selection: #db1616;
|
||||||
|
foreground: #a9b1d6;
|
||||||
|
comment: #6272a4;
|
||||||
|
cyan: #449dab;
|
||||||
|
green: #9ece6a;
|
||||||
|
orange: #ffb86c;
|
||||||
|
pink: #ff79c6;
|
||||||
|
purple: #ad8ee6;
|
||||||
|
red: #f7768e;
|
||||||
|
yellow: #e0af68;
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
* {
|
||||||
|
background-darker: #1a1b26;
|
||||||
|
backgrounds: #1a1b26;
|
||||||
|
selection: #787c99;
|
||||||
|
foreground: #a9b1d6;
|
||||||
|
comment: #6272a4;
|
||||||
|
cyan: #449dab;
|
||||||
|
green: #9ece6a;
|
||||||
|
orange: #ffb86c;
|
||||||
|
pink: #ff79c6;
|
||||||
|
purple: #ad8ee6;
|
||||||
|
red: #f7768e;
|
||||||
|
yellow: #e0af68;
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
configuration {
|
||||||
|
modi: ["drun", "window", "run"];
|
||||||
|
icon-theme: "Papirus-Dark";
|
||||||
|
show-icons: true;
|
||||||
|
terminal: "kitty";
|
||||||
|
drun-display-format: "{icon} {name}";
|
||||||
|
location: 0;
|
||||||
|
disable-history: false;
|
||||||
|
sidebar-mode: false;
|
||||||
|
display-drun: " ";
|
||||||
|
display-run: " ";
|
||||||
|
display-window: " ";
|
||||||
|
|
||||||
|
// Vim keybindings
|
||||||
|
kb-row-up: "Up,Control+k,Shift+Tab,Shift+ISO_Left_Tab";
|
||||||
|
kb-row-down: "Down,Control+j";
|
||||||
|
kb-row-left: "Left,Control+h";
|
||||||
|
kb-row-right: "Right,Control+l";
|
||||||
|
|
||||||
|
kb-accept-entry: "Control+m,Return,KP_Enter";
|
||||||
|
kb-remove-to-eol: "Control+Shift+e";
|
||||||
|
kb-move-char-back: "Control+b";
|
||||||
|
kb-move-char-forward: "Control+f";
|
||||||
|
kb-mode-complete: "";
|
||||||
|
kb-remove-char-back: "BackSpace";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "madz258-rofi.rasi"
|
|
@ -0,0 +1,86 @@
|
||||||
|
@import "colors-tokyo"
|
||||||
|
|
||||||
|
* {
|
||||||
|
font: "UbuntuMono Nerd Font 14";
|
||||||
|
foreground: @foreground;
|
||||||
|
background-color: @backgrounds;
|
||||||
|
border: 1px;
|
||||||
|
transparent: rgba(46, 52, 64, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
window {
|
||||||
|
width: 900;
|
||||||
|
height: 400;
|
||||||
|
|
||||||
|
orientation: horizontal;
|
||||||
|
location: center;
|
||||||
|
anchor: center;
|
||||||
|
border-radius: 20px;
|
||||||
|
spacing: 0;
|
||||||
|
children: [ mainbox ];
|
||||||
|
}
|
||||||
|
|
||||||
|
mainbox {
|
||||||
|
spacing: 0;
|
||||||
|
children: [ inputbar, message, listview ];
|
||||||
|
}
|
||||||
|
|
||||||
|
inputbar {
|
||||||
|
color: @selection;
|
||||||
|
margin: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
border: 3px;
|
||||||
|
border-color: @cyan;
|
||||||
|
border-radius: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
message {
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
entry,
|
||||||
|
prompt,
|
||||||
|
case-indicator {
|
||||||
|
text-font: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
entry {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
listview {
|
||||||
|
layout: vertical;
|
||||||
|
padding: 10px;
|
||||||
|
lines: 12;
|
||||||
|
columns: 7;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
element {
|
||||||
|
color: @cyan;
|
||||||
|
orientation: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-text,
|
||||||
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-icon {
|
||||||
|
size: 32;
|
||||||
|
}
|
||||||
|
|
||||||
|
element selected.normal {
|
||||||
|
background-color: @comment;
|
||||||
|
border: 2px;
|
||||||
|
border-color: @cyan;
|
||||||
|
border-radius: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
scrollbar {
|
||||||
|
enabled: true;
|
||||||
|
}
|
Loading…
Reference in New Issue