rofi
This commit is contained in:
parent
0ae69871e8
commit
ca13101e90
323 changed files with 22014 additions and 0 deletions
27
rofi/launchers/slate/launcher.sh
Executable file
27
rofi/launchers/slate/launcher.sh
Executable file
|
@ -0,0 +1,27 @@
|
|||
#!/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
|
||||
#
|
||||
# slate_full slate_center slate_left
|
||||
# slate_right slate_top slate_bottom
|
||||
|
||||
theme="slate_full"
|
||||
|
||||
dir="$HOME/.config/rofi/launchers/slate"
|
||||
styles=($(ls -p --hide="colors.rasi" $dir/styles))
|
||||
color="${styles[$(( $RANDOM % 20 ))]}"
|
||||
|
||||
# comment this line to disable random colors
|
||||
sed -i -e "s/@import .*/@import \"$color\"/g" $dir/styles/colors.rasi
|
||||
|
||||
# comment these lines to disable random style
|
||||
themes=($(ls -p --hide="launcher.sh" --hide="styles" $dir))
|
||||
theme="${themes[$(( $RANDOM % 6 ))]}"
|
||||
|
||||
rofi -no-lazy-grab -show drun -modi drun -theme $dir/"$theme"
|
138
rofi/launchers/slate/slate_bottom.rasi
Normal file
138
rofi/launchers/slate/slate_bottom.rasi
Normal file
|
@ -0,0 +1,138 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Twitter : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "FantasqueSansMono Nerd Font 10";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
disable-history: false;
|
||||
fullscreen: false;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
@import "styles/colors.rasi"
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
height: 50%;
|
||||
width: 100%;
|
||||
location: south;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0% 1% 0% 0%;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 12";
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
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% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
margin: 0% 52.25% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 10;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 8% 5% 0% 5%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0%;
|
||||
padding: 1% 0% 1% 0%;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 0.5% 1% 0% 1%;
|
||||
}
|
||||
|
||||
element normal.urgent,
|
||||
element alternate.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
border-radius: 1%;
|
||||
}
|
||||
|
||||
element normal.active,
|
||||
element alternate.active {
|
||||
background-color: @background-alt;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
138
rofi/launchers/slate/slate_center.rasi
Normal file
138
rofi/launchers/slate/slate_center.rasi
Normal file
|
@ -0,0 +1,138 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Twitter : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "FantasqueSansMono Nerd Font 10";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
disable-history: false;
|
||||
fullscreen: false;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
@import "styles/colors.rasi"
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
height: 70%;
|
||||
width: 70%;
|
||||
location: center;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0% 1% 0% 0%;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 12";
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
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% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
margin: 0% 38.25% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 8;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 6% 3% 6% 3%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0%;
|
||||
padding: 1% 0% 1% 0%;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 0.5% 1% 0% 1%;
|
||||
}
|
||||
|
||||
element normal.urgent,
|
||||
element alternate.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
border-radius: 1%;
|
||||
}
|
||||
|
||||
element normal.active,
|
||||
element alternate.active {
|
||||
background-color: @background-alt;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
133
rofi/launchers/slate/slate_full.rasi
Normal file
133
rofi/launchers/slate/slate_full.rasi
Normal file
|
@ -0,0 +1,133 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Twitter : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "FantasqueSansMono Nerd Font 10";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
disable-history: false;
|
||||
fullscreen: true;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
@import "styles/colors.rasi"
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 5% 3% 5% 3%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0% 1% 0% 0%;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 12";
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
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% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
margin: 0% 49.5% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 8;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 5% 3% 5% 3%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 15% 10% 15% 10%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0%;
|
||||
padding: 1% 0% 1% 0%;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 0.5% 1% 0% 1%;
|
||||
}
|
||||
|
||||
element normal.urgent,
|
||||
element alternate.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
border-radius: 1%;
|
||||
}
|
||||
|
||||
element normal.active,
|
||||
element alternate.active {
|
||||
background-color: @background-alt;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
138
rofi/launchers/slate/slate_left.rasi
Normal file
138
rofi/launchers/slate/slate_left.rasi
Normal file
|
@ -0,0 +1,138 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Twitter : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "FantasqueSansMono Nerd Font 10";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
disable-history: false;
|
||||
fullscreen: false;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
@import "styles/colors.rasi"
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
height: 100%;
|
||||
width: 30%;
|
||||
location: west;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0% 1% 0% 0%;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 12";
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
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% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
margin: 0% 0% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 3;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 5% 3% 5% 3%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0%;
|
||||
padding: 1% 0% 1% 0%;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 0.5% 1% 0% 1%;
|
||||
}
|
||||
|
||||
element normal.urgent,
|
||||
element alternate.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
border-radius: 1%;
|
||||
}
|
||||
|
||||
element normal.active,
|
||||
element alternate.active {
|
||||
background-color: @background-alt;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
138
rofi/launchers/slate/slate_right.rasi
Normal file
138
rofi/launchers/slate/slate_right.rasi
Normal file
|
@ -0,0 +1,138 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Twitter : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "FantasqueSansMono Nerd Font 10";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
disable-history: false;
|
||||
fullscreen: false;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
@import "styles/colors.rasi"
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
height: 100%;
|
||||
width: 30%;
|
||||
location: east;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0% 1% 0% 0%;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 12";
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
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% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
margin: 0% 0% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 3;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 5% 3% 5% 3%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0%;
|
||||
padding: 1% 0% 1% 0%;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 0.5% 1% 0% 1%;
|
||||
}
|
||||
|
||||
element normal.urgent,
|
||||
element alternate.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
border-radius: 1%;
|
||||
}
|
||||
|
||||
element normal.active,
|
||||
element alternate.active {
|
||||
background-color: @background-alt;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
138
rofi/launchers/slate/slate_top.rasi
Normal file
138
rofi/launchers/slate/slate_top.rasi
Normal file
|
@ -0,0 +1,138 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Twitter : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "FantasqueSansMono Nerd Font 10";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
disable-history: false;
|
||||
fullscreen: false;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
@import "styles/colors.rasi"
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
height: 50%;
|
||||
width: 100%;
|
||||
location: north;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0% 1% 0% 0%;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 12";
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
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% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
margin: 0% 52.25% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 10;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 8% 5% 0% 5%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0%;
|
||||
padding: 1% 0% 1% 0%;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 0.5% 1% 0% 1%;
|
||||
}
|
||||
|
||||
element normal.urgent,
|
||||
element alternate.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
border-radius: 1%;
|
||||
}
|
||||
|
||||
element normal.active,
|
||||
element alternate.active {
|
||||
background-color: @background-alt;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
36
rofi/launchers/slate/styles/Amber.rasi
Normal file
36
rofi/launchers/slate/styles/Amber.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Amber -- */
|
||||
|
||||
* {
|
||||
shade1: #FF6F00;
|
||||
shade2: #FF8F00;
|
||||
shade3: #FFA000;
|
||||
shade4: #FFB300;
|
||||
shade5: #FFC107;
|
||||
shade6: #FFCA28;
|
||||
shade7: #FFD54F;
|
||||
shade8: #FFE082;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #404040;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #404040;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Black.rasi
Normal file
36
rofi/launchers/slate/styles/Black.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Gray -- */
|
||||
|
||||
* {
|
||||
shade1: #000000;
|
||||
shade2: #050505;
|
||||
shade3: #101010;
|
||||
shade4: #151515;
|
||||
shade5: #202020;
|
||||
shade6: #252525;
|
||||
shade7: #303030;
|
||||
shade8: #353535;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade2;
|
||||
border-alt: @shade3;
|
||||
background: @shade4;
|
||||
background-alt: @shade5;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Blue.rasi
Normal file
36
rofi/launchers/slate/styles/Blue.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Blue -- */
|
||||
|
||||
* {
|
||||
shade1: #0D47A1;
|
||||
shade2: #1565C0;
|
||||
shade3: #1976D2;
|
||||
shade4: #1E88E5;
|
||||
shade5: #2196F3;
|
||||
shade6: #42A5F5;
|
||||
shade7: #64B5F6;
|
||||
shade8: #90CAF9;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #202020;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Blue_gray.rasi
Normal file
36
rofi/launchers/slate/styles/Blue_gray.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Blue Gray -- */
|
||||
|
||||
* {
|
||||
shade1: #263238;
|
||||
shade2: #37474F;
|
||||
shade3: #455A64;
|
||||
shade4: #546E7A;
|
||||
shade5: #607D8B;
|
||||
shade6: #78909C;
|
||||
shade7: #90A4AE;
|
||||
shade8: #B0BEC5;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Brown.rasi
Normal file
36
rofi/launchers/slate/styles/Brown.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Brown -- */
|
||||
|
||||
* {
|
||||
shade1: #3E2723;
|
||||
shade2: #4E342E;
|
||||
shade3: #5D4037;
|
||||
shade4: #6D4C41;
|
||||
shade5: #795548;
|
||||
shade6: #8D6E63;
|
||||
shade7: #A1887F;
|
||||
shade8: #BCAAA4;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Cyan.rasi
Normal file
36
rofi/launchers/slate/styles/Cyan.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Cyan -- */
|
||||
|
||||
* {
|
||||
shade1: #006064;
|
||||
shade2: #00838F;
|
||||
shade3: #0097A7;
|
||||
shade4: #00ACC1;
|
||||
shade5: #00BCD4;
|
||||
shade6: #26C6DA;
|
||||
shade7: #4DD0E1;
|
||||
shade8: #80DEEA;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #303030;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Deep_orange.rasi
Normal file
36
rofi/launchers/slate/styles/Deep_orange.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Deep Orange -- */
|
||||
|
||||
* {
|
||||
shade1: #BF360C;
|
||||
shade2: #D84315;
|
||||
shade3: #E64A19;
|
||||
shade4: #F4511E;
|
||||
shade5: #FF5722;
|
||||
shade6: #FF7043;
|
||||
shade7: #FF8A65;
|
||||
shade8: #FFAB91;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #353535;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Deep_purple.rasi
Normal file
36
rofi/launchers/slate/styles/Deep_purple.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Deep Purple -- */
|
||||
|
||||
* {
|
||||
shade1: #311B92;
|
||||
shade2: #4527A0;
|
||||
shade3: #512DA8;
|
||||
shade4: #5E35B1;
|
||||
shade5: #673AB7;
|
||||
shade6: #7E57C2;
|
||||
shade7: #9575CD;
|
||||
shade8: #B39DDB;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Gray.rasi
Normal file
36
rofi/launchers/slate/styles/Gray.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Gray -- */
|
||||
|
||||
* {
|
||||
shade1: #212121;
|
||||
shade2: #424242;
|
||||
shade3: #616161;
|
||||
shade4: #757575;
|
||||
shade5: #9E9E9E;
|
||||
shade6: #BDBDBD;
|
||||
shade7: #D4D4D4;
|
||||
shade8: #EEEEEE;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #303030;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Green.rasi
Normal file
36
rofi/launchers/slate/styles/Green.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Green -- */
|
||||
|
||||
* {
|
||||
shade1: #1B5E20;
|
||||
shade2: #2E7D32;
|
||||
shade3: #388E3C;
|
||||
shade4: #43A047;
|
||||
shade5: #4CAF50;
|
||||
shade6: #66BB6A;
|
||||
shade7: #81C784;
|
||||
shade8: #A5D6A7;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #202020;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Indigo.rasi
Normal file
36
rofi/launchers/slate/styles/Indigo.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Indigo -- */
|
||||
|
||||
* {
|
||||
shade1: #1A237E;
|
||||
shade2: #283593;
|
||||
shade3: #303F9F;
|
||||
shade4: #3949AB;
|
||||
shade5: #3F51B5;
|
||||
shade6: #5C6BC0;
|
||||
shade7: #7986CB;
|
||||
shade8: #9FA8DA;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Light_blue.rasi
Normal file
36
rofi/launchers/slate/styles/Light_blue.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Light Blue -- */
|
||||
|
||||
* {
|
||||
shade1: #01579B;
|
||||
shade2: #0277BD;
|
||||
shade3: #0288D1;
|
||||
shade4: #039BE5;
|
||||
shade5: #03A9F4;
|
||||
shade6: #29B6F6;
|
||||
shade7: #4FC3F7;
|
||||
shade8: #81D4FA;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #202020;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Light_green.rasi
Normal file
36
rofi/launchers/slate/styles/Light_green.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Light Green -- */
|
||||
|
||||
* {
|
||||
shade1: #33691E;
|
||||
shade2: #558B2F;
|
||||
shade3: #689F38;
|
||||
shade4: #7CB342;
|
||||
shade5: #8BC34A;
|
||||
shade6: #9CCC65;
|
||||
shade7: #AED581;
|
||||
shade8: #C5E1A5;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #353535;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Lime.rasi
Normal file
36
rofi/launchers/slate/styles/Lime.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Lime -- */
|
||||
|
||||
* {
|
||||
shade1: #827717;
|
||||
shade2: #9E9D24;
|
||||
shade3: #AFB42B;
|
||||
shade4: #C0CA33;
|
||||
shade5: #CDDC39;
|
||||
shade6: #D4E157;
|
||||
shade7: #DCE775;
|
||||
shade8: #E6EE9C;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #252525;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #404040;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Orange.rasi
Normal file
36
rofi/launchers/slate/styles/Orange.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Orange -- */
|
||||
|
||||
* {
|
||||
shade1: #E65100;
|
||||
shade2: #EF6C00;
|
||||
shade3: #F57C00;
|
||||
shade4: #FB8C00;
|
||||
shade5: #FF9800;
|
||||
shade6: #FFA726;
|
||||
shade7: #FFB74D;
|
||||
shade8: #FFCC80;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #202020;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #353535;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Pink.rasi
Normal file
36
rofi/launchers/slate/styles/Pink.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Pink -- */
|
||||
|
||||
* {
|
||||
shade1: #880E4F;
|
||||
shade2: #AD1457;
|
||||
shade3: #C2185B;
|
||||
shade4: #D81B60;
|
||||
shade5: #E91E63;
|
||||
shade6: #EC407A;
|
||||
shade7: #F06292;
|
||||
shade8: #F48FB1;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Purple.rasi
Normal file
36
rofi/launchers/slate/styles/Purple.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Purple -- */
|
||||
|
||||
* {
|
||||
shade1: #4A148C;
|
||||
shade2: #6A1B9A;
|
||||
shade3: #7B1FA2;
|
||||
shade4: #8E24AA;
|
||||
shade5: #9C27B0;
|
||||
shade6: #AB47BC;
|
||||
shade7: #BA68C8;
|
||||
shade8: #CE93D8;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Red.rasi
Normal file
36
rofi/launchers/slate/styles/Red.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Red -- */
|
||||
|
||||
* {
|
||||
shade1: #B71C1C;
|
||||
shade2: #C62828;
|
||||
shade3: #D32F2F;
|
||||
shade4: #E53935;
|
||||
shade5: #EE413D;
|
||||
shade6: #EF5350;
|
||||
shade7: #E57373;
|
||||
shade8: #EF9A9A;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Teal.rasi
Normal file
36
rofi/launchers/slate/styles/Teal.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Teal -- */
|
||||
|
||||
* {
|
||||
shade1: #004D40;
|
||||
shade2: #00695C;
|
||||
shade3: #00796B;
|
||||
shade4: #00897B;
|
||||
shade5: #009688;
|
||||
shade6: #26A69A;
|
||||
shade7: #4DB6AC;
|
||||
shade8: #80CBC4;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers/slate/styles/Yellow.rasi
Normal file
36
rofi/launchers/slate/styles/Yellow.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Yellow -- */
|
||||
|
||||
* {
|
||||
shade1: #F57F17;
|
||||
shade2: #F9A825;
|
||||
shade3: #FBC02D;
|
||||
shade4: #FDD835;
|
||||
shade5: #FFEB3B;
|
||||
shade6: #FFEE58;
|
||||
shade7: #FFF176;
|
||||
shade8: #FFF59D;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #353535;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #505050;
|
||||
urgent: #DA4453;
|
||||
}
|
12
rofi/launchers/slate/styles/colors.rasi
Normal file
12
rofi/launchers/slate/styles/colors.rasi
Normal file
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
* Change the colorscheme for every menu simply by editing this file...
|
||||
*
|
||||
* Available Color Schemes
|
||||
*
|
||||
* Amber Blue Blue_gray Black Brown Cyan Deep_orange
|
||||
* Deep_purple Gray Green Indigo Light_blue Light_green Lime
|
||||
* Orange Pink Purple Red Teal Yellow
|
||||
*
|
||||
*/
|
||||
|
||||
@import "Indigo.rasi"
|
Loading…
Add table
Add a link
Reference in a new issue