rofi
This commit is contained in:
parent
0ae69871e8
commit
ca13101e90
323 changed files with 22014 additions and 0 deletions
133
rofi/launchers/ribbon/full_bottom.rasi
Normal file
133
rofi/launchers/ribbon/full_bottom.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: 0% 0% 3% 0%;
|
||||
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% 48.75% 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: 0% 0% 3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 12.50% 10% 5% 10%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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/ribbon/full_left.rasi
Normal file
133
rofi/launchers/ribbon/full_left.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: 0% 0% 0% 1.5%;
|
||||
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% 47% 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: 0% 0% 0% 1.5%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 15% 10% 10% 10%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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/ribbon/full_right.rasi
Normal file
133
rofi/launchers/ribbon/full_right.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: 0% 1.5% 0% 0%;
|
||||
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% 47% 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: 0% 1.5% 0% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 15% 10% 10% 10%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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/ribbon/full_top.rasi
Normal file
133
rofi/launchers/ribbon/full_top.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: 3% 0% 0% 0%;
|
||||
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% 48.75% 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: 3% 0% 0% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 12.50% 10% 5% 10%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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;
|
||||
}
|
28
rofi/launchers/ribbon/launcher.sh
Executable file
28
rofi/launchers/ribbon/launcher.sh
Executable file
|
@ -0,0 +1,28 @@
|
|||
#!/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
|
||||
#
|
||||
# ribbon_top ribbon_top_round ribbon_bottom ribbon_bottom_round
|
||||
# ribbon_left ribbon_left_round ribbon_right ribbon_right_round
|
||||
# full_bottom full_top full_left full_right
|
||||
|
||||
theme="ribbon_top_round"
|
||||
|
||||
dir="$HOME/.config/rofi/launchers/ribbon"
|
||||
styles=($(ls -p --hide="colors.rasi" $dir/styles))
|
||||
color="${styles[$(( $RANDOM % 8 ))]}"
|
||||
|
||||
# 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 % 12 ))]}"
|
||||
|
||||
rofi -no-lazy-grab -show drun -modi drun -theme $dir/"$theme"
|
138
rofi/launchers/ribbon/ribbon_bottom.rasi
Normal file
138
rofi/launchers/ribbon/ribbon_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: 0% 0% 3% 0%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
height: 68.5%;
|
||||
width: 55%;
|
||||
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% 0% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 6;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 0% 0% 3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 2.5% 2% 2.5% 2%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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/ribbon/ribbon_bottom_round.rasi
Normal file
138
rofi/launchers/ribbon/ribbon_bottom_round.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: 0% 0% 3% 0%;
|
||||
border-color: @border;
|
||||
border-radius: 25px 25px 50px 50px;
|
||||
height: 68.5%;
|
||||
width: 55%;
|
||||
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: 25px;
|
||||
border-color: @border-alt;
|
||||
margin: 0% 0% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 6;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 0% 0% 3% 0%;
|
||||
border-radius: 50px;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 2.5% 2% 2.5% 2%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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: 25px;
|
||||
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/ribbon/ribbon_left.rasi
Normal file
138
rofi/launchers/ribbon/ribbon_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: 0% 0% 0% 1.5%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
height: 49.50%;
|
||||
width: 40%;
|
||||
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% 17% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 4;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 0% 0% 0% 1.5%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 2.5% 2% 2.5% 2%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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/ribbon/ribbon_left_round.rasi
Normal file
138
rofi/launchers/ribbon/ribbon_left_round.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: 0% 0% 0% 1.5%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 2.5%;
|
||||
height: 49.50%;
|
||||
width: 40%;
|
||||
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.2%;
|
||||
border-radius: 1.5% 1.0% 1.5% 1.5%;
|
||||
border-color: @border-alt;
|
||||
margin: 0% 17% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 4;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 0% 0% 0% 1.5%;
|
||||
border-radius: 0% 0% 0% 2.5%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 2.5% 2% 2.5% 2%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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.2%;
|
||||
border-radius: 1.5% 1.0% 1.5% 1.5%;
|
||||
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/ribbon/ribbon_right.rasi
Normal file
138
rofi/launchers/ribbon/ribbon_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: 0% 1.5% 0% 0%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
height: 36.50%;
|
||||
width: 50%;
|
||||
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% 22.25% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 6;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 0% 1.5% 0% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 2.5% 2% 2.5% 2%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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/ribbon/ribbon_right_round.rasi
Normal file
138
rofi/launchers/ribbon/ribbon_right_round.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: 0% 1.5% 0% 0%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 1.5% 0% 0%;
|
||||
height: 36.50%;
|
||||
width: 50%;
|
||||
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.2% 0.3% 0%;
|
||||
border-radius: 0% 1.5% 1.5% 1.5%;
|
||||
border-color: @border-alt;
|
||||
margin: 0% 22.25% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 6;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 0% 1.5% 0% 0%;
|
||||
border-radius: 0% 1.5% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 2.5% 2% 2.5% 2%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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.2% 0.3% 0%;
|
||||
border-radius: 1.5% 1.5% 1.5% 1.5%;
|
||||
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/ribbon/ribbon_top.rasi
Normal file
138
rofi/launchers/ribbon/ribbon_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: 3% 0% 0% 0%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
height: 55.50%;
|
||||
width: 45%;
|
||||
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% 0% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 5;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 3% 0% 0% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 2.5% 2% 2.5% 2%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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/ribbon/ribbon_top_round.rasi
Normal file
138
rofi/launchers/ribbon/ribbon_top_round.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: 3% 0% 0% 0%;
|
||||
border-color: @border;
|
||||
border-radius: 2.5% 0% 0% 0%;
|
||||
height: 55.50%;
|
||||
width: 45%;
|
||||
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.2% 0.3% 0%;
|
||||
border-radius: 1.5% 0% 1.5% 0%;
|
||||
border-color: @border-alt;
|
||||
margin: 0% 0% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 5;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 3% 0% 0% 0%;
|
||||
border-radius: 2.5% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 2.5% 2% 2.5% 2%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
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% 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.2% 0.3% 0%;
|
||||
border-radius: 1.5% 0% 1.5% 0%;
|
||||
border-color: @border-alt;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
9
rofi/launchers/ribbon/styles/berry.rasi
Normal file
9
rofi/launchers/ribbon/styles/berry.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #2D142Cff;
|
||||
background-alt: #2D142Cff;
|
||||
foreground: #ffffffA6;
|
||||
border: #EE4540ff;
|
||||
border-alt: #C92A42ff;
|
||||
selected: #510A3299;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers/ribbon/styles/bluish.rasi
Normal file
9
rofi/launchers/ribbon/styles/bluish.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #EFF0F1FF;
|
||||
background-alt: #EFF0F1FF;
|
||||
foreground: #000000A6;
|
||||
border: #000B83FF;
|
||||
border-alt: #3DAEE9FF;
|
||||
selected: #93CEE999;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers/ribbon/styles/cocoa.rasi
Normal file
9
rofi/launchers/ribbon/styles/cocoa.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #413E4Aff;
|
||||
background-alt: #413E4Aff;
|
||||
foreground: #F7C7B2ff;
|
||||
border: #B38184ff;
|
||||
border-alt: #F3B69Eff;
|
||||
selected: #B381841a;
|
||||
urgent: #DA4453FF;
|
||||
}
|
10
rofi/launchers/ribbon/styles/colors.rasi
Normal file
10
rofi/launchers/ribbon/styles/colors.rasi
Normal file
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
* Change the colorscheme for every menu simply by editing this file...
|
||||
*
|
||||
* Available Color Schemes
|
||||
*
|
||||
* bluish berry nordic nightly gotham mask faded cocoa
|
||||
*
|
||||
*/
|
||||
|
||||
@import "nordic.rasi"
|
9
rofi/launchers/ribbon/styles/faded.rasi
Normal file
9
rofi/launchers/ribbon/styles/faded.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #5E6C91ff;
|
||||
background-alt: #5E6C91ff;
|
||||
foreground: #FFFCFFff;
|
||||
border: #FF83A7ff;
|
||||
border-alt: #F4BB6Cff;
|
||||
selected: #A0B5F44c;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers/ribbon/styles/gotham.rasi
Normal file
9
rofi/launchers/ribbon/styles/gotham.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #29384Fff;
|
||||
background-alt: #29384Fff;
|
||||
foreground: #FEFFF1ff;
|
||||
border: #345B7Cff;
|
||||
border-alt: #715979ff;
|
||||
selected: #C46C851a;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers/ribbon/styles/mask.rasi
Normal file
9
rofi/launchers/ribbon/styles/mask.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #434C6Dff;
|
||||
background-alt: #434C6Dff;
|
||||
foreground: #FAF7CCff;
|
||||
border: #CA8CA5ff;
|
||||
border-alt: #F0B2B3ff;
|
||||
selected: #EFD4B61a;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers/ribbon/styles/nightly.rasi
Normal file
9
rofi/launchers/ribbon/styles/nightly.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #2A3950ff;
|
||||
background-alt: #2A3950ff;
|
||||
foreground: #FEFFF1ff;
|
||||
border: #A162F7ff;
|
||||
border-alt: #45E3FFff;
|
||||
selected: #6F88FE1a;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers/ribbon/styles/nordic.rasi
Normal file
9
rofi/launchers/ribbon/styles/nordic.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #475C7Bff;
|
||||
background-alt: #475C7Bff;
|
||||
foreground: #ffffffcc;
|
||||
border: #FDBB6Dff;
|
||||
border-alt: #DA717Fff;
|
||||
selected: #685E79ff;
|
||||
urgent: #DA4453FF;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue