This commit is contained in:
vibikim 2021-03-23 10:06:18 +02:00
parent 0ae69871e8
commit ca13101e90
323 changed files with 22014 additions and 0 deletions

View file

@ -0,0 +1,136 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Light -- */
* {
background: #e5e5e5ff;
background-alt: #00000000;
background-bar: #FFFFFFFF;
foreground: #000000A6;
accent: #80808066;
border: #1A73E9FF;
selected: #D7D7D7FF;
}
/* -- Dark -- */
/*
* {
background: #212121ff;
background-alt: #00000000;
background-bar: #151515FF;
foreground: #EDEDEDFF;
accent: #EDEDED4d;
border: #1A73E9FF;
selected: #151515ff;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 0px;
height: 100%;
width: 30%;
location: west;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.25% 0.75% 0% -0.25%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Apps";
padding: -0.15% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-radius: 100%;
border-color: @accent;
margin: 0% 0% 0% 0%;
padding: 1.25%;
}
listview {
background-color: @background-alt;
columns: 5;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 2%;
padding: 5% 1.5% 0% 1.5%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2% 0% 2% 0%;
}
element-icon {
size: 64px;
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: @selected;
text-color: @foreground;
border: 0% 0% 0.3% 0%;
border-radius: 5px;
border-color: @border;
}

View file

@ -0,0 +1,136 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Light -- */
* {
background: #e5e5e5ff;
background-alt: #00000000;
background-bar: #FFFFFFFF;
foreground: #000000A6;
accent: #80808066;
border: #1A73E9FF;
selected: #D7D7D7FF;
}
/* -- Dark -- */
/*
* {
background: #212121ff;
background-alt: #00000000;
background-bar: #151515FF;
foreground: #EDEDEDFF;
accent: #EDEDED4d;
border: #1A73E9FF;
selected: #151515ff;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 30px;
width: 30%;
location: west;
x-offset: 20px;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.25% 0.75% 0% -0.25%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Apps";
padding: -0.15% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-radius: 100%;
border-color: @accent;
margin: 0% 0% 0% 0%;
padding: 1.25%;
}
listview {
background-color: @background-alt;
columns: 4;
lines: 5;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 2%;
padding: 2% 1% 2% 1%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2% 0% 2% 0%;
}
element-icon {
size: 64px;
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: @selected;
text-color: @foreground;
border: 0% 0% 0.3% 0%;
border-radius: 25px;
border-color: @border;
}

View file

@ -0,0 +1,136 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Light -- */
* {
background: #e5e5e5ff;
background-alt: #00000000;
background-bar: #FFFFFFFF;
foreground: #000000A6;
accent: #80808066;
border: #1A73E9FF;
selected: #D7D7D7FF;
}
/* -- Dark -- */
/*
* {
background: #212121ff;
background-alt: #00000000;
background-bar: #151515FF;
foreground: #EDEDEDFF;
accent: #EDEDED4d;
border: #1A73E9FF;
selected: #151515ff;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 5px;
width: 27%;
location: east;
x-offset: -20px;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.25% 0.75% 0% -0.25%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0.5;
placeholder: "Search";
padding: -0.15% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-radius: 5px;
border-color: @accent;
margin: 0% 0% 0% 0%;
padding: 1.25%;
}
listview {
background-color: @background-alt;
columns: 4;
lines: 3;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 1.25%;
padding: 1.5% 0.75% 1.5% 0.75%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2% 0% 2% 0%;
}
element-icon {
size: 64px;
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: @selected;
text-color: @foreground;
border: 0% 0% 0.3% 0%;
border-radius: 5px;
border-color: @border;
}

View file

@ -0,0 +1,120 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans Bold 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
* {
background: #00000000;
background-alt: #00000000;
background-bar: #f2f2f215;
foreground: #f2f2f2EE;
accent: #3DAEE966;
}
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 0px;
width: 40%;
location: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.30% 1% 0% -0.5%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search";
padding: 0.10% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0% 0% 0% 0%;
border-radius: 12px;
border-color: @accent;
margin: 0% 0% 0% 0%;
padding: 1.5%;
}
listview {
background-color: @background-alt;
columns: 5;
lines: 3;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 2%;
padding: 2% 1% 2% 1%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2% 0% 2% 0%;
}
element-icon {
size: 64px;
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: @background-bar;
text-color: @foreground;
border: 0% 0% 0% 0%;
border-radius: 12px;
border-color: @accent;
}

View file

@ -0,0 +1,116 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans Bold 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: true;
hide-scrollbar: true;
sidebar-mode: false;
}
* {
background: #00000000;
background-alt: #00000000;
background-bar: #f2f2f215;
foreground: #f2f2f2EE;
accent: #3DAEE966;
}
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 0px;
}
prompt {
enabled: true;
padding: 0.30% 1% 0% -0.5%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search";
padding: 0.10% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0% 0% 0% 0%;
border-radius: 12px;
border-color: @accent;
margin: 0% 25% 0% 25%;
padding: 1.5%;
}
listview {
background-color: @background-alt;
columns: 8;
lines: 4;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 8%;
padding: 10% 12.5% 10% 12.5%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2.5% 0% 2.5% 0%;
}
element-icon {
size: 80px;
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: @background-bar;
text-color: @foreground;
border: 0% 0% 0% 0%;
border-radius: 12px;
border-color: @accent;
}

View file

@ -0,0 +1,136 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Light -- */
* {
background: #e5e5e5ff;
background-alt: #00000000;
background-bar: #FFFFFFFF;
foreground: #000000A6;
accent: #80808066;
border: #1A73E9FF;
selected: #D7D7D7FF;
}
/* -- Dark -- */
/*
* {
background: #212121ff;
background-alt: #00000000;
background-bar: #151515FF;
foreground: #EDEDEDFF;
accent: #EDEDED4d;
border: #1A73E9FF;
selected: #151515ff;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 0px;
height: 100%;
width: 9%;
location: east;
x-offset: 0px;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.25% 0.75% 0% -0.25%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search";
padding: -0.10% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-radius: 5px;
border-color: @accent;
margin: 0% 0% 0% 0%;
padding: 1.25%;
}
listview {
background-color: @background-alt;
columns: 1;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 1.25%;
padding: 3.5% 0.75% 0% 0.75%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2.25% 0% 2.25% 0%;
}
element-icon {
size: 64px;
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: @selected;
text-color: @foreground;
border: 0% 0% 0.3% 0%;
border-radius: 5px;
border-color: @border;
}

View file

@ -0,0 +1,165 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 12";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Classical -- */
* {
background: #27639AFF;
background-alt: #00000000;
background-bar: #f2f2f240;
foreground: #f2f2f2EE;
accent: #3DAEE966;
}
/* -- Transparent -- */
/*
* {
background: #00000000;
background-alt: #00000000;
background-bar: #f2f2f215;
foreground: #f2f2f2EE;
accent: #3DAEE966;
}
*/
/* -- Light -- */
/*
* {
background: #e5e5e5ff;
background-alt: #00000000;
background-bar: #20202040;
foreground: #404040EE;
accent: #3DAEE966;
}
*/
/* -- Dark -- */
/*
* {
background: #252525ff;
background-alt: #00000000;
background-bar: #10101040;
foreground: #e5e5e5EE;
accent: #3DAEE966;
}
*/
/* -- Black -- */
/*
* {
background: #000000ff;
background-alt: #00000000;
background-bar: #101010ff;
foreground: #e5e5e5EE;
accent: #3DAEE966;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 25px;
width: 26%;
location: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: false;
padding: 0%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0.5;
placeholder: " Search";
padding: 0% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0% 0%;
border-radius: 0px;
border-color: @accent;
margin: 0% 0% 0% 0%;
padding: 0%;
}
listview {
background-color: @background-alt;
columns: 2;
lines: 1;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 2%;
padding: 2% 1% 2% 1%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2.5% 0% 2.5% 0%;
}
element-icon {
size: 128px;
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: @background-bar;
text-color: @foreground;
border: 0% 0% 0% 0%;
border-radius: 15px;
border-color: @accent;
}

View file

@ -0,0 +1,143 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Breeze Light-- */
* {
background: #EFF0F1FF;
background-alt: #00000000;
background-bar: #93CEE999;
foreground: #000000A6;
accent: #3DAEE9FF;
}
/* -- Breeze Dark-- */
/*
* {
background: #31363bff;
background-alt: #00000000;
background-bar: #3daee966;
foreground: #f5f5f5e6;
accent: #1d99f3ff;
}
*/
/* -- Black-- */
/*
* {
background: #000000ff;
background-alt: #00000000;
background-bar: #3daee966;
foreground: #f5f5f5b3;
accent: #1d99f3ff;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 0px;
width: 38%;
location: north;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.30% 0.75% 0% -0.5%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 10";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search";
padding: -0.15% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background;
text-color: @foreground;
expand: false;
border: 0.1%;
border-radius: 4px;
border-color: @accent;
margin: 0% 0% 0% 0%;
padding: 1%;
}
listview {
background-color: @background-alt;
columns: 1;
lines: 7;
spacing: 0.5%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 1%;
padding: 1% 0.5% 1% 0.5%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: horizontal;
border-radius: 0%;
padding: 0.5%;
}
element-icon {
size: 32px;
border: 0px;
}
element-text {
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
margin: 0% 0% 0% 0.25%;
}
element selected {
background-color: @background-bar;
text-color: @foreground;
border: 0.1%;
border-radius: 4px;
border-color: @accent;
}

View file

@ -0,0 +1,143 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Breeze Light-- */
* {
background: #EFF0F1FF;
background-alt: #00000000;
background-bar: #93CEE999;
foreground: #000000A6;
accent: #3DAEE9FF;
}
/* -- Breeze Dark-- */
/*
* {
background: #31363bff;
background-alt: #00000000;
background-bar: #3daee966;
foreground: #f5f5f5e6;
accent: #1d99f3ff;
}
*/
/* -- Black-- */
/*
* {
background: #000000ff;
background-alt: #00000000;
background-bar: #3daee966;
foreground: #f5f5f5b3;
accent: #1d99f3ff;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 0px;
width: 38%;
location: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.30% 0.75% 0% -0.5%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 10";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search";
padding: -0.15% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background;
text-color: @foreground;
expand: false;
border: 0.1%;
border-radius: 4px;
border-color: @accent;
margin: 0% 0% 0% 0%;
padding: 1%;
}
listview {
background-color: @background-alt;
columns: 6;
lines: 3;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 1%;
padding: 1% 0.5% 1% 0.5%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2% 0% 2% 0%;
}
element-icon {
size: 64px;
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: @background-bar;
text-color: @foreground;
border: 0.1%;
border-radius: 4px;
border-color: @accent;
}

22
rofi/launchers/misc/launcher.sh Executable file
View file

@ -0,0 +1,22 @@
#!/usr/bin/env bash
## Author : Aditya Shakya
## Mail : adi1090x@gmail.com
## Github : @adi1090x
## Twitter : @adi1090x
# Available Styles
# >> Created and tested on : rofi 1.6.0-1
#
# blurry blurry_full kde_simplemenu kde_krunner launchpad
# gnome_do slingshot appdrawer appdrawer_alt appfolder
# column row row_center screen row_dock row_dropdown
theme="launchpad"
dir="$HOME/.config/rofi/launchers/misc"
# comment these lines to disable random style
# themes=($(ls -p --hide="launcher.sh" $dir))
# theme="${themes[$(( $RANDOM % 16 ))]}"
rofi -no-lazy-grab -show drun -modi drun -theme $dir/"$theme"

View file

@ -0,0 +1,116 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans Bold 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: true;
hide-scrollbar: true;
sidebar-mode: false;
}
* {
background: #00000060;
background-alt: #00000000;
background-bar: #f2f2f215;
foreground: #f2f2f2EE;
accent: #ffffff66;
}
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 0px;
}
prompt {
enabled: true;
padding: 0.30% 1% 0% -0.5%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search";
padding: 0.10% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0.1%;
border-radius: 6px;
border-color: @accent;
margin: 0% 30% 0% 30%;
padding: 1%;
}
listview {
background-color: @background-alt;
columns: 7;
lines: 4;
spacing: 2%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 8%;
padding: 10% 8.5% 10% 8.5%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2.5% 0% 2.5% 0%;
}
element-icon {
size: 81px;
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: @background-bar;
text-color: @foreground;
border: 0% 0% 0% 0%;
border-radius: 12px;
border-color: @accent;
}

View file

@ -0,0 +1,136 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Light -- */
* {
background: #e5e5e5ff;
background-alt: #00000000;
background-bar: #FFFFFFFF;
foreground: #000000A6;
accent: #80808066;
border: #1A73E9FF;
selected: #D7D7D7FF;
}
/* -- Dark -- */
/*
* {
background: #212121ff;
background-alt: #00000000;
background-bar: #151515FF;
foreground: #EDEDEDFF;
accent: #EDEDED4d;
border: #1A73E9FF;
selected: #151515ff;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 0px;
width: 100%;
location: south;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.25% 0.75% 0% -0.25%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: -0.10% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-radius: 100%;
border-color: @accent;
margin: 0% 73.75% 0% 0%;
padding: 1.25%;
}
listview {
background-color: @background-alt;
columns: 12;
lines: 1;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 1.5%;
padding: 2% 1% 2% 1%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2.5% 0% 2.5% 0%;
}
element-icon {
size: 80px;
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: @selected;
text-color: @foreground;
border: 0% 0% 0.3% 0%;
border-radius: 25px;
border-color: @border;
}

View file

@ -0,0 +1,136 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Light -- */
* {
background: #e5e5e5ff;
background-alt: #00000000;
background-bar: #FFFFFFFF;
foreground: #000000A6;
accent: #80808066;
border: #1A73E9FF;
selected: #D7D7D7FF;
}
/* -- Dark -- */
/*
* {
background: #212121ff;
background-alt: #00000000;
background-bar: #151515FF;
foreground: #EDEDEDFF;
accent: #EDEDED4d;
border: #1A73E9FF;
selected: #151515ff;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 0px;
width: 100%;
location: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.25% 0.75% 0% -0.25%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: -0.10% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0% 0% 0% 0.3%;
border-radius: 0% 100% 100% 0%;
border-color: @border;
margin: 0% 73.75% 0% 0%;
padding: 1.25%;
}
listview {
background-color: @background-alt;
columns: 12;
lines: 2;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 1.5%;
padding: 2% 1% 2% 1%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2.5% 0% 2.5% 0%;
}
element-icon {
size: 80px;
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: @selected;
text-color: @foreground;
border: 0% 0% 0% 0.3%;
border-radius: 0px;
border-color: @border;
}

View file

@ -0,0 +1,136 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Light -- */
* {
background: #e5e5e5ff;
background-alt: #00000000;
background-bar: #FFFFFFFF;
foreground: #000000A6;
accent: #80808066;
border: #1A73E9FF;
selected: #D7D7D7FF;
}
/* -- Dark -- */
/*
* {
background: #212121ff;
background-alt: #00000000;
background-bar: #151515FF;
foreground: #EDEDEDFF;
accent: #EDEDED4d;
border: #1A73E9FF;
selected: #151515ff;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 50px 50px 0px 0px;
width: 100%;
location: south;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.25% 0.75% 0% -0.25%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0.5;
placeholder: "Search Applications";
padding: -0.10% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-radius: 100%;
border-color: @accent;
margin: 0% 35% 0% 35%;
padding: 1.25%;
}
listview {
background-color: @background-alt;
columns: 12;
lines: 2;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 1.5%;
padding: 2% 1% 2% 1%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2.5% 0% 2.5% 0%;
}
element-icon {
size: 80px;
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: @selected;
text-color: @foreground;
border: 0% 0% 0.3% 0%;
border-radius: 25px;
border-color: @border;
}

View file

@ -0,0 +1,136 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Light -- */
* {
background: #e5e5e5ff;
background-alt: #00000000;
background-bar: #FFFFFFFF;
foreground: #000000A6;
accent: #80808066;
border: #1A73E9FF;
selected: #D7D7D7FF;
}
/* -- Dark -- */
/*
* {
background: #212121ff;
background-alt: #00000000;
background-bar: #151515FF;
foreground: #EDEDEDFF;
accent: #EDEDED4d;
border: #1A73E9FF;
selected: #151515ff;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 0px 0px 50px 50px;
width: 100%;
location: north;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.25% 0.75% 0% -0.25%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0.5;
placeholder: "Search Applications";
padding: -0.10% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-radius: 100%;
border-color: @accent;
margin: 0% 35% 0% 35%;
padding: 1.25%;
}
listview {
background-color: @background-alt;
columns: 12;
lines: 2;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ listview, inputbar ];
spacing: 2%;
padding: 2% 1% 2% 1%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2.5% 0% 2.5% 0%;
}
element-icon {
size: 80px;
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: @selected;
text-color: @foreground;
border: 0% 0% 0.3% 0%;
border-radius: 25px;
border-color: @border;
}

View file

@ -0,0 +1,132 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: true;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Light -- */
* {
background: #e5e5e5ff;
background-alt: #00000000;
background-bar: #FFFFFFFF;
foreground: #000000A6;
accent: #80808066;
border: #1A73E9FF;
selected: #D7D7D7FF;
}
/* -- Dark -- */
/*
* {
background: #212121ff;
background-alt: #00000000;
background-bar: #151515FF;
foreground: #EDEDEDFF;
accent: #EDEDED4d;
border: #1A73E9FF;
selected: #151515ff;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 0px;
}
prompt {
enabled: true;
padding: 0.25% 0.75% 0% -0.25%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: -0.10% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background-bar;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0.2%;
border-radius: 10%;
border-color: @border;
margin: 0% 50% 0% 0%;
padding: 1.25%;
}
listview {
background-color: @background-alt;
columns: 8;
lines: 3;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 5%;
padding: 15% 10% 10% 10%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 3% 0% 3% 0%;
}
element-icon {
size: 80px;
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: @selected;
text-color: @foreground;
border: 0% 0% 0.3% 0.2%;
border-radius: 25px;
border-color: @border;
}

View file

@ -0,0 +1,132 @@
/*
*
* Author : Aditya Shakya
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Twitter : @adi1090x
*
*/
configuration {
font: "Noto Sans 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
/* -- Light-- */
* {
background: #F5F5F5FF;
background-alt: #00000000;
background-bar: #D7D7D7FF;
foreground: #000000A6;
accent: #80808066;
}
/* -- Dark -- */
/*
* {
background: #3E4148FF;
background-alt: #00000000;
background-bar: #363A3FFF;
foreground: #F5F5F5FF;
accent: #00000066;
}
*/
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border: 0px;
border-color: @border;
border-radius: 4px;
width: 32%;
location: northwest;
x-offset: 10px;
y-offset: 50px;
}
prompt {
enabled: true;
padding: 0.30% 0.5% 0% 0%;
background-color: @background-alt;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 10";
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: -0.15% 0% 0% 0%;
blink: true;
}
inputbar {
children: [ prompt, entry ];
background-color: @background;
text-color: @foreground;
expand: false;
border: 0.1%;
border-radius: 4px;
border-color: @accent;
margin: 0% 0% 0% 0%;
padding: 0.50%;
}
listview {
background-color: @background-alt;
columns: 5;
lines: 3;
spacing: 0%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-alt;
border: 0% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @accent;
children: [ inputbar, listview ];
spacing: 1%;
padding: 1.25% 0.65% 1.25% 0.65%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 2% 0% 2% 0%;
}
element-icon {
size: 64px;
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: @background-bar;
text-color: @foreground;
border: 0.1%;
border-radius: 4px;
border-color: @accent;
}