mirror of
https://github.com/avinal/dotfiles.git
synced 2026-07-04 07:20:09 +05:30
feat: major update to all configs
- move older config to archive Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
@@ -0,0 +1,79 @@
|
||||
configuration {
|
||||
modi: "drun";
|
||||
font: "Rubik 10";
|
||||
display-drun: "";
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
@theme "/dev/null"
|
||||
|
||||
* {
|
||||
bg: #b5b5aa;
|
||||
fg: #2b2b2b;
|
||||
button: #9e9e95;
|
||||
|
||||
background-color: @bg;
|
||||
text-color: @fg;
|
||||
}
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
border-radius: 7px;
|
||||
width: 40%;
|
||||
y-offset: 10px;
|
||||
padding: 20px;
|
||||
location: south;
|
||||
}
|
||||
|
||||
prompt { enabled: false; }
|
||||
|
||||
entry {
|
||||
placeholder: "Search";
|
||||
expand: true;
|
||||
padding: 5px 2% 5px 2%;
|
||||
background-color: @button;
|
||||
placeholder-color: @fg;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
children: [ prompt, entry ];
|
||||
background-color: @button;
|
||||
text-color: @fg;
|
||||
expand: false;
|
||||
border-radius: 6px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
listview {
|
||||
columns: 1;
|
||||
lines: 8;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 2% 1% 2% 1%;
|
||||
}
|
||||
|
||||
element {
|
||||
orientation: vertical;
|
||||
border-radius: 0%;
|
||||
padding: 1.5% 0% 1.5% 0%;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
vertical-align: 0.5;
|
||||
margin: 0.5% 3% 0% 3%;
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @fg;
|
||||
text-color: @bg;
|
||||
border-radius: 6px;
|
||||
}
|
||||
@@ -0,0 +1,148 @@
|
||||
/**
|
||||
* A floating box version of the paper theme.
|
||||
*
|
||||
* User: Qball
|
||||
* Copyright: Dave Davenport
|
||||
*/
|
||||
|
||||
* {
|
||||
grey: #484848;
|
||||
black: #282828;
|
||||
red: #ee5396;
|
||||
green: #25be6a;
|
||||
yellow: #f8e17c;
|
||||
blue: #33b1ff;
|
||||
magenta: #be95ff;
|
||||
cyan: #3ddbd9;
|
||||
white: #dfdfe0;
|
||||
|
||||
spacing: 2;
|
||||
background-color: #00000000;
|
||||
border-color: #3ddbd9;
|
||||
anchor: north;
|
||||
location: center;
|
||||
}
|
||||
window {
|
||||
transparency: "screenshot";
|
||||
background-color: #00000000;
|
||||
border: 0;
|
||||
padding: 0% 0% 1em 0%;
|
||||
x-offset: 0;
|
||||
y-offset: -10%;
|
||||
}
|
||||
mainbox {
|
||||
padding: 0px;
|
||||
border: 0;
|
||||
spacing: 1%;
|
||||
}
|
||||
prompt {
|
||||
text-color: @white;
|
||||
text-style: bold;
|
||||
}
|
||||
entry {
|
||||
text-color: @white;
|
||||
}
|
||||
message {
|
||||
border: 2px;
|
||||
padding: 1em;
|
||||
background-color: @black;
|
||||
text-color: @white;
|
||||
}
|
||||
textbox normal {
|
||||
text-color: @white;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
listview {
|
||||
fixed-height: 1;
|
||||
border: 2px;
|
||||
padding: 1em;
|
||||
reverse: false;
|
||||
|
||||
columns: 1;
|
||||
background-color: @black;
|
||||
}
|
||||
element {
|
||||
border: 0;
|
||||
padding: 2px;
|
||||
highlight: bold ;
|
||||
}
|
||||
element-text {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
element normal.normal {
|
||||
text-color: @white;
|
||||
background-color: @black;
|
||||
}
|
||||
element normal.urgent {
|
||||
text-color: @red;
|
||||
background-color: @black;
|
||||
}
|
||||
element normal.active {
|
||||
text-color: @black;
|
||||
background-color: @cyan;
|
||||
}
|
||||
element selected.normal {
|
||||
text-color: @black;
|
||||
background-color: @cyan;
|
||||
}
|
||||
element selected.urgent {
|
||||
text-color: #F5F5F5;
|
||||
background-color: @red;
|
||||
}
|
||||
element selected.active {
|
||||
text-color: @black;
|
||||
background-color: @cyan;
|
||||
}
|
||||
element alternate.normal {
|
||||
text-color: @white;
|
||||
background-color: @grey;
|
||||
}
|
||||
element alternate.urgent {
|
||||
text-color: @red;
|
||||
background-color: @grey;
|
||||
}
|
||||
element alternate.active {
|
||||
text-color: @white;
|
||||
background-color: @grey;
|
||||
}
|
||||
scrollbar {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
inputbar {
|
||||
spacing: 0;
|
||||
border: 2px;
|
||||
padding: 0.5em 1em;
|
||||
background-color: @black;
|
||||
index: 0;
|
||||
}
|
||||
inputbar normal {
|
||||
foreground-color: @white;
|
||||
background-color: @white;
|
||||
}
|
||||
mode-switcher {
|
||||
border: 2px;
|
||||
padding: 0.5em 1em;
|
||||
background-color: @black;
|
||||
index: 10;
|
||||
}
|
||||
button selected {
|
||||
text-color: @cyan;
|
||||
}
|
||||
inputbar {
|
||||
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
||||
}
|
||||
textbox-prompt-colon {
|
||||
expand: false;
|
||||
str: ":";
|
||||
margin: 0px 0.3em 0em 0em ;
|
||||
text-color: var(white);
|
||||
}
|
||||
error-message {
|
||||
border: 2px;
|
||||
padding: 1em;
|
||||
background-color: @black;
|
||||
text-color: @red;
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
/*******************************************************************************
|
||||
* ROFI SQUARED THEME USING THE MATERIAL DARKER PALETTE
|
||||
* User : LR-Tech
|
||||
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
|
||||
*******************************************************************************/
|
||||
|
||||
* {
|
||||
|
||||
bg0: #212121;
|
||||
bg1: #404040;
|
||||
fg0: #eeffff;
|
||||
|
||||
accent-color: #f07178;
|
||||
urgent-color: #ffcb6b;
|
||||
|
||||
background-color: transparent;
|
||||
text-color: @fg0;
|
||||
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
window {
|
||||
location: center;
|
||||
width: 480;
|
||||
|
||||
background-color: @bg0;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
spacing: 8px;
|
||||
padding: 8px;
|
||||
|
||||
background-color: @bg1;
|
||||
}
|
||||
|
||||
prompt, entry, element-icon, element-text {
|
||||
vertical-align: 0.5;
|
||||
}
|
||||
|
||||
prompt {
|
||||
text-color: @accent-color;
|
||||
}
|
||||
|
||||
textbox {
|
||||
padding: 8px;
|
||||
background-color: @bg1;
|
||||
}
|
||||
|
||||
listview {
|
||||
padding: 4px 0;
|
||||
lines: 8;
|
||||
columns: 1;
|
||||
|
||||
fixed-height: false;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 8px;
|
||||
spacing: 8px;
|
||||
}
|
||||
|
||||
element normal normal {
|
||||
text-color: @fg0;
|
||||
}
|
||||
|
||||
element normal urgent {
|
||||
text-color: @urgent-color;
|
||||
}
|
||||
|
||||
element normal active {
|
||||
text-color: @accent-color;
|
||||
}
|
||||
|
||||
element alternate active {
|
||||
text-color: @accent-color;
|
||||
}
|
||||
|
||||
element selected {
|
||||
text-color: @bg0;
|
||||
}
|
||||
|
||||
element selected normal, element selected active {
|
||||
background-color: @accent-color;
|
||||
}
|
||||
|
||||
element selected urgent {
|
||||
background-color: @urgent-color;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 0.8em;
|
||||
}
|
||||
|
||||
element-text {
|
||||
text-color: inherit;
|
||||
}
|
||||
Reference in New Issue
Block a user