Initial Commit
This commit is contained in:
10
.config/sway/rofi/colors.rasi
Normal file
10
.config/sway/rofi/colors.rasi
Normal file
@@ -0,0 +1,10 @@
|
||||
/* colors */
|
||||
|
||||
* {
|
||||
al: #00000000;
|
||||
bg: #1F1F1FFF;
|
||||
bga: #ffb30033;
|
||||
bar: #1F1F1FFF;
|
||||
fg: #FFFFFFFF;
|
||||
ac: #f15495ff;
|
||||
}
|
||||
98
.config/sway/rofi/config.rasi
Normal file
98
.config/sway/rofi/config.rasi
Normal file
@@ -0,0 +1,98 @@
|
||||
configuration{
|
||||
modi: "run,drun,window";
|
||||
lines: 5;
|
||||
font: "Iosevka 12";
|
||||
show-icons: true;
|
||||
icon-theme: "Paper Mono";
|
||||
terminal: "st";
|
||||
drun-display-format: "{icon} {name}";
|
||||
location: 0;
|
||||
disable-history: false;
|
||||
hide-scrollbar: true;
|
||||
display-drun: " Apps ";
|
||||
}
|
||||
|
||||
@theme "everblush"
|
||||
|
||||
element-text, element-icon , mode-switcher {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
|
||||
window {
|
||||
height: 360px;
|
||||
border: 3px;
|
||||
border-color: @border-col;
|
||||
background-color: @bg-col;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @bg-col;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
children: [prompt,entry];
|
||||
background-color: @bg-col;
|
||||
border-radius: 5px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
prompt {
|
||||
background-color: @blue;
|
||||
padding: 6px;
|
||||
text-color: @bg-col;
|
||||
border-radius: 3px;
|
||||
margin: 20px 0px 0px 20px;
|
||||
}
|
||||
|
||||
textbox-prompt-colon {
|
||||
expand: false;
|
||||
str: ":";
|
||||
}
|
||||
|
||||
entry {
|
||||
padding: 6px;
|
||||
margin: 20px 0px 0px 10px;
|
||||
text-color: @fg-col;
|
||||
background-color: @bg-col;
|
||||
}
|
||||
|
||||
listview {
|
||||
border: 0px 0px 0px;
|
||||
padding: 6px 0px 0px;
|
||||
margin: 10px 0px 0px 20px;
|
||||
columns: 2;
|
||||
background-color: @bg-col;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 5px;
|
||||
background-color: @bg-col;
|
||||
text-color: @fg-col ;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 25px;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @selected-col ;
|
||||
text-color: @fg-col2 ;
|
||||
}
|
||||
|
||||
mode-switcher {
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 10px;
|
||||
background-color: @bg-col-light;
|
||||
text-color: @grey;
|
||||
vertical-align: 0.5;
|
||||
horizontal-align: 0.5;
|
||||
}
|
||||
|
||||
button selected {
|
||||
background-color: @bg-col;
|
||||
text-color: @blue;
|
||||
}
|
||||
117
.config/sway/rofi/launcher1.rasi
Normal file
117
.config/sway/rofi/launcher1.rasi
Normal file
@@ -0,0 +1,117 @@
|
||||
/*
|
||||
*
|
||||
* Original Author : Aditya Shakya
|
||||
* Author : DN-debug
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto sans 12";
|
||||
show-icons: true;
|
||||
icon-theme: "";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
disable-history: true;
|
||||
fullscreen: false;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
@import "colors.rasi"
|
||||
|
||||
* {
|
||||
background-color: @al;
|
||||
text-color: #eeeeee;
|
||||
}
|
||||
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: #101010A9;
|
||||
text-color: #eeeeee;
|
||||
border: 0px;
|
||||
border-color: @ac;
|
||||
border-radius: 5px;
|
||||
height: 60%;
|
||||
width: 60%;
|
||||
location: northwest;
|
||||
x-offset: 20%;
|
||||
y-offset: 20%;
|
||||
}
|
||||
|
||||
|
||||
entry {
|
||||
background-color: #000000;
|
||||
text-color: white;
|
||||
expand: false;
|
||||
horizontal-align: 50%;
|
||||
placeholder: "Type to search";
|
||||
margin: 0% 0% 0% 20%;
|
||||
padding: 1.5% 5.5%;
|
||||
blink: true;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
children: [ entry ];
|
||||
background-color: #00000000;
|
||||
text-color: @bg;
|
||||
expand: false;
|
||||
border: 0% 0% 0% 0%;
|
||||
border-radius: 0px;
|
||||
border-color: @ac;
|
||||
margin: 0% 0% 0% 0%;
|
||||
padding: 1.5%;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @al;
|
||||
padding: 0px;
|
||||
columns: 5;
|
||||
lines: 5;
|
||||
spacing: 0%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @al;
|
||||
border: 0% 0% 0% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @al;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 0%;
|
||||
padding: 0%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @al;
|
||||
text-color: #eeeeee;
|
||||
orientation: horizontal;
|
||||
border-radius: 5%;
|
||||
padding: 2% 1% 2% 1%;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 48px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 0.5% 0.5% -0.5% 0.5%;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @sa;
|
||||
text-color: #ffffff;
|
||||
border: 0% 0% 0% 0%;
|
||||
border-radius: 12px;
|
||||
border-color: @al;
|
||||
}
|
||||
|
||||
element-text selected {
|
||||
text-color: @ac;
|
||||
}
|
||||
117
.config/sway/rofi/launcher2.rasi
Normal file
117
.config/sway/rofi/launcher2.rasi
Normal file
@@ -0,0 +1,117 @@
|
||||
/*
|
||||
*
|
||||
* Original Author : Aditya Shakya
|
||||
* Author : DN-debug
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto sans 12";
|
||||
show-icons: true;
|
||||
icon-theme: "";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
disable-history: true;
|
||||
fullscreen: false;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
@import "colors.rasi"
|
||||
|
||||
* {
|
||||
background-color: @al;
|
||||
text-color: #eeeeee;
|
||||
}
|
||||
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: #101010A9;
|
||||
text-color: #eeeeee;
|
||||
border: 0px;
|
||||
border-color: @ac;
|
||||
border-radius: 5px;
|
||||
height: 90%;
|
||||
width: 96%;
|
||||
location: northwest;
|
||||
x-offset: 2%;
|
||||
y-offset: 5%;
|
||||
}
|
||||
|
||||
|
||||
entry {
|
||||
background-color: #000000;
|
||||
text-color: white;
|
||||
expand: false;
|
||||
horizontal-align: 50%;
|
||||
placeholder: "Type to search";
|
||||
margin: 0% 0% 0% 37%;
|
||||
padding: 1.5% 5.5%;
|
||||
blink: true;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
children: [ entry ];
|
||||
background-color: #00000000;
|
||||
text-color: @bg;
|
||||
expand: false;
|
||||
border: 0% 0% 0% 0%;
|
||||
border-radius: 0px;
|
||||
border-color: @ac;
|
||||
margin: 0% 0% 0% 0%;
|
||||
padding: 1.5%;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @al;
|
||||
padding: 0px;
|
||||
columns: 5;
|
||||
lines: 5;
|
||||
spacing: 0%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @al;
|
||||
border: 0% 0% 0% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @al;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 0%;
|
||||
padding: 0%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @al;
|
||||
text-color: #eeeeee;
|
||||
orientation: horizontal;
|
||||
border-radius: 5%;
|
||||
padding: 2% 1% 2% 1%;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 48px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 0.5% 0.5% -0.5% 0.5%;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @sa;
|
||||
text-color: #ffffff;
|
||||
border: 0% 0% 0% 0%;
|
||||
border-radius: 12px;
|
||||
border-color: @al;
|
||||
}
|
||||
|
||||
element-text selected {
|
||||
text-color: @ac;
|
||||
}
|
||||
Reference in New Issue
Block a user