Merge remote-tracking branch 'origin/master' into master

This commit is contained in:
Chris Cochrun 2020-11-07 14:35:02 -06:00
commit 7853465f84
223 changed files with 174 additions and 12335 deletions

File diff suppressed because one or more lines are too long

View file

@ -764,7 +764,7 @@ c.colors.webpage.darkmode.contrast = 0.7
## `colors.webpage.darkmode.threshold.background` to 205. - "With
## selective inversion of everything": Combines the two variants above.
## Type: Bool
c.colors.webpage.darkmode.enabled = True
# c.colors.webpage.darkmode.enabled = True
## Render all colors as grayscale. This only has an effect when
## `colors.webpage.darkmode.algorithm` is set to `lightness-hsl` or
@ -2303,9 +2303,6 @@ config.bind('d', 'close')
# config.bind('yy', 'yank')
# config.bind('{{', 'navigate prev -t')
# config.bind('}}', 'navigate next -t')
config.bind('v', 'hint links spawn --detach mpv --force-window yes {hint-url}')
config.bind('gv', 'spawn --detach mpv --force-window yes {url}')
config.bind('gV', 'hint links spawn alacritty -e youtube-dl -o ~/Videos/%(title)s-%(id)s.%(ext)s {hint-url}')
## Bindings for caret mode
# config.bind('$', 'move-to-end-of-line', mode='caret')
@ -2422,3 +2419,11 @@ config.bind('gV', 'hint links spawn alacritty -e youtube-dl -o ~/Videos/%(title)
# config.bind('Y', 'prompt-accept --save yes', mode='yesno')
# config.bind('n', 'prompt-accept no', mode='yesno')
# config.bind('y', 'prompt-accept yes', mode='yesno')
## Bindings for MPV and YTDL
config.bind('v', 'hint links spawn --detach mpv --force-window yes {hint-url}')
config.bind('gv', 'spawn --detach mpv --force-window yes {url}')
config.bind('gV', 'hint links spawn alacritty -e youtube-dl -o ~/Videos/%(title)s.%(ext)s {hint-url}')
## Bindings for MPV and YTDL
config.bind('o', 'spawn --userscript rofi')

@ -1 +0,0 @@
Subproject commit 8dbd06d2d61548bef7651c2c7652940aeafda823

View file

@ -1 +0,0 @@
../scripts/apps.sh

View file

@ -1 +0,0 @@
../scripts/backlight.sh

View file

@ -1 +0,0 @@
../scripts/battery.sh

View file

@ -1 +0,0 @@
../scripts/menu_apps.sh

View file

@ -1 +0,0 @@
../scripts/menu_backlight.sh

View file

@ -1 +0,0 @@
../scripts/menu_battery.sh

View file

@ -1 +0,0 @@
../scripts/menu_mpd.sh

View file

@ -1 +0,0 @@
../scripts/menu_network.sh

View file

@ -1 +0,0 @@
../scripts/menu_powermenu.sh

View file

@ -1 +0,0 @@
../scripts/menu_quicklinks.sh

View file

@ -1 +0,0 @@
../scripts/menu_screenshot.sh

View file

@ -1 +0,0 @@
../scripts/menu_time.sh

View file

@ -1 +0,0 @@
../scripts/menu_volume.sh

View file

@ -1 +0,0 @@
../scripts/mpd.sh

View file

@ -1 +0,0 @@
../scripts/network.sh

View file

@ -1 +0,0 @@
../scripts/powermenu.sh

View file

@ -1 +0,0 @@
../scripts/quicklinks.sh

View file

@ -1 +0,0 @@
../scripts/screenshot.sh

View file

@ -1 +0,0 @@
../scripts/time.sh

View file

@ -1,53 +0,0 @@
#!/bin/bash
# Source: http://askubuntu.com/a/450136
# I only slightly modify this script to add an option to show icon, useful for my tint2 executor
# Also useful for polybar custom script, dzen2 feeder, conkybar, lemonbar feeder, dunst notify, etc.
# 'usedcpu -i' = with icon, 'usedcpu' = text only
# Cheers!
# Addy
PREV_TOTAL=0
PREV_IDLE=0
cpuFile="/tmp/.cpu"
if [[ -f "${cpuFile}" ]]; then
fileCont=$(cat "${cpuFile}")
PREV_TOTAL=$(echo "${fileCont}" | head -n 1)
PREV_IDLE=$(echo "${fileCont}" | tail -n 1)
fi
CPU=(`cat /proc/stat | grep '^cpu '`) # Get the total CPU statistics.
unset CPU[0] # Discard the "cpu" prefix.
IDLE=${CPU[4]} # Get the idle CPU time.
# Calculate the total CPU time.
TOTAL=0
for VALUE in "${CPU[@]:0:4}"; do
let "TOTAL=$TOTAL+$VALUE"
done
if [[ "${PREV_TOTAL}" != "" ]] && [[ "${PREV_IDLE}" != "" ]]; then
# Calculate the CPU usage since we last checked.
let "DIFF_IDLE=$IDLE-$PREV_IDLE"
let "DIFF_TOTAL=$TOTAL-$PREV_TOTAL"
let "DIFF_USAGE=(1000*($DIFF_TOTAL-$DIFF_IDLE)/$DIFF_TOTAL+5)/10"
if [[ $1 = "-i" ]]; then
echo " ${DIFF_USAGE}%"
else
echo "${DIFF_USAGE}%"
fi
else
if [[ $1 = "-i" ]]; then
echo " ?"
else
echo "?"
fi
fi
# Remember the total and idle CPU times for the next check.
echo "${TOTAL}" > "${cpuFile}"
echo "${IDLE}" >> "${cpuFile}"

View file

@ -1,34 +0,0 @@
#!/bin/bash
# this script is taken from screenfetch
# I only slightly modify this script to add an option to show icon, useful for my tint2 executor
# 'usedram -i' = with icon, 'usedram' = text only
# 'usedram -fi' = full summary with icon, 'usedram' = full summary text only
# Cheers!
# Addy
mem_info=$(</proc/meminfo)
mem_info=$(echo $(echo $(mem_info=${mem_info// /}; echo ${mem_info//kB/})))
for m in $mem_info; do
case ${m//:*} in
"MemTotal") usedmem=$((usedmem+=${m//*:})); totalmem=${m//*:} ;;
"ShMem") usedmem=$((usedmem+=${m//*:})) ;;
"MemFree"|"Buffers"|"Cached"|"SReclaimable") usedmem=$((usedmem-=${m//*:})) ;;
esac
done
usedmem=$((usedmem / 1024))
totalmem=$((totalmem / 1024))
mem="${usedmem}MB / ${totalmem}MB"
## Complete summary
if [[ $1 = "-fi" ]]; then
echo " $mem"
elif [[ $1 = "-f" ]]; then
echo "$mem"
## Only used RAM
elif [[ $1 = "-i" ]]; then
echo " $usedmem MB"
else
echo "$usedmem MB"
fi

View file

@ -1 +0,0 @@
../scripts/volume.sh

View file

@ -1 +0,0 @@
// rofi.theme: /usr/share/rofi/themes/Arc-Dark.rasi

View file

@ -3,9 +3,5 @@
configuration {
show-icons: true;
icon-theme: "Papirus";
// location: 5;
// yoffset: -50;
// xoffset: -20;
}
// @import "/usr/share/rofi/themes/android_notification.rasi"
@import "/home/chris/.dotfiles/rofi/launchers-git/blurry.rasi"

View file

@ -0,0 +1,164 @@
/*-*- mode: css; -*-*/
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "VictorMono Nerd Font 14.0";
show-icons: true;
icon-theme: "Papirus";
display-drun: " ";
drun-display-format: "{name} {description}";
threads: 0;
scroll-method: 0;
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
* {
background: #12121222;
background-color: #00222b33;
background-entry: #000000;
background-alt: #323232;
foreground: #f2f2f2;
foreground-selected: #ffffff;
urgent: #E91E63;
urgent-selected: #E91E63;
transparent: #00000000;
}
window {
background-color: #44444444;
text-color: @foreground;
border-radius: 0px;
border: 0px;
// height: 60%;
width: 80%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
margin: 0px;
padding: 0px;
}
mainbox {
border-radius: 35px;
background-color: @background-color;
text-color: @foreground;
transparency: "real";
}
inputbar {
background-color: @background-alt;
text-color: @foreground;
expand: false;
border-radius: 36px;
margin: 0px 0px 0px 0px;
padding: 6px 6px 6px 6px;
position: north;
}
prompt {
enabled: true;
padding: 0px 6px 0px 5px;
background-color: @transparent;
text-color: @foreground;
// font: "FantasqueSansMono Nerd Font 16";
border: 0px;
}
entry {
background-color: @transparent;
placeholder-color: @foreground;
text-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search";
blink: true;
border: 0px;
padding: 0px 0px 0px 6px;
}
case-indicator {
background-color: @transparent;
text-color: @foreground;
spacing: 0;
border: 0px;
}
listview {
background-color: @background;
columns: 1;
spacing: 4px;
cycle: false;
dynamic: true;
layout: vertical;
lines: 10;
scrollbar: false;
border: 0px;
fixed-height: false;
}
mainbox {
background-color: @transparent;
text-color: @transparent;
children: [ inputbar, listview ];
spacing: 5px;
padding: 10px 10px 10px 10px;
}
element {
background-color: @background;
text-color: @foreground;
orientation: horizontal;
border-radius: 6px;
padding: 5px 0px 5px 0px;
}
element-icon {
size: 20px;
border: 0px;
padding: 0px 10px 0px;
}
element-text {
expand: true;
vertical-align: 0.5;
}
element normal.urgent,
element alternate.urgent {
background-color: @urgent;
text-color: @foreground;
border-radius: 9px;
}
element normal.active,
element alternate.active {
background-color: @background-alt;
text-color: @foreground;
}
element selected {
background-color: @background-alt;
text-color: @foreground-selected;
}
element selected.urgent {
background-color: @urgent-selected;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground-selected;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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%;
height: 70%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 10% 55% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 8;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 0% 0% 2.5% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 8% 8% 8% 8%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 84px;
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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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% 2%;
border-color: @border;
border-radius: 0% 0% 0% 0%;
height: 70%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 5% 55% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 8;
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% 8% 15% 8%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 84px;
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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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% 2% 0% 0%;
border-color: @border;
border-radius: 0% 0% 0% 0%;
height: 70%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 5% 55% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 8;
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% 8% 15% 8%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 84px;
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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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%;
height: 70%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 10% 55% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 8;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 2.5% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 8% 8% 8% 8%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 84px;
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;
}

View file

@ -1,18 +0,0 @@
#!/usr/bin/env bash
## Author : Aditya Shakya (adi1090x)
## Mail : adi1090x@gmail.com
## Github : @adi1090x
## Reddit : @adi1090x
# Available Styles
# >> Styles Below Only Works With "rofi-git(AUR)", Current Version: 1.5.4-76-gca067234
# ribbon_top ribbon_top_single ribbon_top_round ribbon_top_single_round
# ribbon_left ribbon_left_single ribbon_left_round ribbon_left_single_round
# ribbon_bottom ribbon_bottom_single ribbon_bottom_round ribbon_bottom_single_round
# ribbon_right ribbon_right_round
# full_bottom full_top full_left full_right
style="ribbon_bottom_round"
rofi -no-lazy-grab -show drun -theme launchers-ribbon/"$style".rasi

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 70%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 6;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 0% 0% 2.5% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 3% 0% 3% 0%;
height: 70%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0.2% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 1% 3% 1%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 6;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 0% 0% 2.5% 0%;
border-radius: 0% 0% 3% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
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.2% 0.3% 0%;
border-color: @border-alt;
border-radius: 3% 1% 3% 1%;
}
element selected.urgent {
background-color: @urgent;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 29%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 7;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 0% 0% 2.5% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 3% 0% 3% 0%;
height: 29%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0.2% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 1% 3% 1%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 7;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 0% 0% 2.5% 0%;
border-radius: 0% 0% 3% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
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.2% 0.3% 0%;
border-color: @border-alt;
border-radius: 3% 1% 3% 1%;
}
element selected.urgent {
background-color: @urgent;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 50%;
width: 40%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 4;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 0% 0% 0% 1.2%;
border-radius: 0% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 63px;
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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 50%;
width: 40%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0.8%;
border-color: @border-alt;
border-radius: 1.5% 0% 1.5% 1%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 4;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 0% 0% 0% 1.2%;
border-radius: 0% 0% 0% 1.5%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 63px;
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% 0% 1.5% 1%;
border-color: @border-alt;
}
element selected.urgent {
background-color: @urgent;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 22.5%;
width: 36%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 4;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 0% 0% 0% 1.2%;
border-radius: 0% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 63px;
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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 22.5%;
width: 36%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0.8%;
border-color: @border-alt;
border-radius: 1.5% 0% 1.5% 1%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 4;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 0% 0% 0% 1.2%;
border-radius: 0% 0% 0% 1.5%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 63px;
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% 0% 1.5% 1%;
border-color: @border-alt;
}
element selected.urgent {
background-color: @urgent;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 37%;
width: 65%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 7;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 0% 1.2% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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% 2% 0% 0%;
height: 37%;
width: 65%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0.2% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0.8% 0% 1%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 7;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 0% 1.2% 0% 0%;
border-radius: 0% 1.5% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
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.2% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0.8% 0% 1%;
}
element selected.urgent {
background-color: @urgent;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 56%;
width: 45%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 5;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 2.5% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 63px;
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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 4% 0% 0% 0%;
height: 56%;
width: 45%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0.2% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 4% 0%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 5;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 2.5% 0% 0% 0%;
border-radius: 4% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 63px;
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: 3% 0% 3% 0%;
border-color: @border-alt;
}
element selected.urgent {
background-color: @urgent;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 28.5%;
width: 45%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 5;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 2.5% 0% 0% 0%;
border-radius: 0% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 63px;
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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Oranchelo";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 4% 0% 0% 0%;
height: 28.5%;
width: 45%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0.2% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 4% 0%;
margin: 1% 0% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 5;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 2.5% 0% 0% 0%;
border-radius: 4% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 1% 1% 1% 1%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 63px;
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: 3% 0% 3% 0%;
border-color: @border-alt;
}
element selected.urgent {
background-color: @urgent;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}

View file

@ -1,9 +0,0 @@
* {
background: #2D142Cff;
background-alt: #2D142Cff;
foreground: #ffffffA6;
border: #EE4540ff;
border-alt: #C92A42ff;
selected: #510A3299;
urgent: #DA4453FF;
}

View file

@ -1,9 +0,0 @@
* {
background: #EFF0F1FF;
background-alt: #EFF0F1FF;
foreground: #000000A6;
border: #000B83FF;
border-alt: #3DAEE9FF;
selected: #93CEE999;
urgent: #DA4453FF;
}

View file

@ -1,9 +0,0 @@
* {
background: #413E4Aff;
background-alt: #413E4Aff;
foreground: #F7C7B2ff;
border: #B38184ff;
border-alt: #F3B69Eff;
selected: #B381841a;
urgent: #DA4453FF;
}

View file

@ -1,10 +0,0 @@
/*
* 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"

View file

@ -1,9 +0,0 @@
* {
background: #5E6C91ff;
background-alt: #5E6C91ff;
foreground: #FFFCFFff;
border: #FF83A7ff;
border-alt: #F4BB6Cff;
selected: #A0B5F44c;
urgent: #DA4453FF;
}

View file

@ -1,9 +0,0 @@
* {
background: #29384Fff;
background-alt: #29384Fff;
foreground: #FEFFF1ff;
border: #345B7Cff;
border-alt: #715979ff;
selected: #C46C851a;
urgent: #DA4453FF;
}

View file

@ -1,9 +0,0 @@
* {
background: #434C6Dff;
background-alt: #434C6Dff;
foreground: #FAF7CCff;
border: #CA8CA5ff;
border-alt: #F0B2B3ff;
selected: #EFD4B61a;
urgent: #DA4453FF;
}

View file

@ -1,9 +0,0 @@
* {
background: #2A3950ff;
background-alt: #2A3950ff;
foreground: #FEFFF1ff;
border: #A162F7ff;
border-alt: #45E3FFff;
selected: #6F88FE1a;
urgent: #DA4453FF;
}

View file

@ -1,9 +0,0 @@
* {
background: #475C7Bff;
background-alt: #475C7Bff;
foreground: #ffffffcc;
border: #FDBB6Dff;
border-alt: #DA717Fff;
selected: #685E79ff;
urgent: #DA4453FF;
}

View file

@ -1,14 +0,0 @@
#!/usr/bin/env bash
## Author : Aditya Shakya (adi1090x)
## Mail : adi1090x@gmail.com
## Github : @adi1090x
## Reddit : @adi1090x
# Available Styles
# >> Styles Below Only Works With "rofi-git(AUR)", Current Version: 1.5.4-76-gca067234
# slate slate_full slate_full_big
style="slate_full"
rofi -no-lazy-grab -show drun -theme launchers-slate/"$style".rasi

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Papirus";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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: 4% 2% 4% 2%;
border-color: @border;
border-radius: 0% 0% 0% 0%;
height: 66%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 1% 25% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 5;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
border: 3% 1.5% 3% 1.5%;
border-radius: 0% 0% 0% 0%;
border-color: @border-alt;
children: [ inputbar, listview ];
spacing: 2%;
padding: 2% 2% 2% 2%;
}
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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Tela";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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%;
height: 70%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 5% 55% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
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: 10% 5% 5% 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;
}

View file

@ -1,149 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 10";
show-icons: true;
icon-theme: "Tela";
display-drun: "";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
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%;
height: 70%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 16";
}
inputbar {
background-color: @background;
text-color: @foreground;
expand: false;
border: 0% 0% 0.3% 0%;
border-color: @border-alt;
border-radius: 0% 0% 0% 0%;
margin: 5% 55% 0% 0%;
padding: 0.7% 0.7% 0.7% 0.7%;
position: center;
}
entry {
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 0.7% 0% 0% 0%;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
columns: 3;
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: 3%;
padding: 10% 5% 5% 5%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 256px;
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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,36 +0,0 @@
/* -- 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;
}

View file

@ -1,12 +0,0 @@
/*
* 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 "Amber.rasi"

View file

@ -1,22 +0,0 @@
/*
* Change the colorscheme for every menu simply by editing this file...
*
* Available Color Schemes
* // Dark
* material-dark/amber material-dark/blue material-dark/blue_grey material-dark/brown material-dark/cyan material-dark/deep_orange
* material-dark/deep_purple material-dark/green material-dark/grey material-dark/indigo material-dark/light_blue material-dark/light_green
* material-dark/lime material-dark/orange material-dark/pink material-dark/purple material-dark/red material-dark/teal
* material-dark/yellow
* // Light
* material-light/amber material-light/blue material-light/blue_grey material-light/brown material-light/cyan material-light/deep_orange
* material-light/deep_purple material-light/green material-light/grey material-light/indigo material-light/light_blue material-light/light_green
* material-light/lime material-light/orange material-light/pink material-light/purple material-light/red material-light/teal
* material-light/yellow
*
* // Other
* adapta, adapta-nokto, arc, arc-dark, adwaita, gruvbox, dark
* armchair, darkpink, fresh, inside, party, sirin
*
*/
@import "../themes/colorschemes/material-dark/teal.rasi"

View file

@ -1,19 +0,0 @@
#!/usr/bin/env bash
## Author : Aditya Shakya (adi1090x)
## Mail : adi1090x@gmail.com
## Github : @adi1090x
## Reddit : @adi1090x
# Available Styles
#
# >> Edit these files and uncomment the desired colors/style.
#
# style_icons_blur style_icons_full style_icons_rainbow style_icons_rainbow_sidebar
# style_icons_popup style_normal style_normal_grid style_normal_grid_full style_normal_grid_full_round
# style_normal_grid_round style_normal_purple style_normal_purple_alt style_normal_rainbow
# style_normal_rainbow_sidebar
style="style_normal_rainbow"
rofi -no-lazy-grab -show emoji -theme launchers/"$style".rasi

View file

@ -1,19 +0,0 @@
#!/usr/bin/env bash
## Author : Aditya Shakya (adi1090x)
## Mail : adi1090x@gmail.com
## Github : @adi1090x
## Reddit : @adi1090x
# Available Styles
#
# >> Edit these files and uncomment the desired colors/style.
#
# style_icons_blur style_icons_full style_icons_rainbow style_icons_rainbow_sidebar
# style_icons_popup style_normal style_normal_grid style_normal_grid_full style_normal_grid_full_round
# style_normal_grid_round style_normal_purple style_normal_purple_alt style_normal_rainbow
# style_normal_rainbow_sidebar
style="style_icons_rainbow"
rofi -no-lazy-grab -show drun -theme launchers/"$style".rasi

View file

@ -1,124 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon}";
show-icons: true;
icon-theme: "Papirus";
location: 2;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: true;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
// black version
* {
bg: #000000;
ac: #869fa214;
txt: #d1d5da;
}
// white version
/*
* {
bg: #ffffff;
ac: #e5e5e5;
txt: #202020;
}
*/
// blur version
/*
* {
bg: #00000066;
ac: #0000001a;
txt: #d1d5da;
}
*/
* {
background-color: rgba(0,0,0,0);
font: "FantasqueSansMono Nerd Font 48";
}
window {
transparency: "real";
fullscreen: true;
}
mainbox {
children: [ inputbar, listview ];
margin: 24% 30% 24% 30%;
background-color: @bg;
border-radius: 12;
border: 2;
border-color: #ffffff0A;
}
listview {
columns: 6;
padding: 8;
spacing: 0;
}
element {
border: 1;
text-color: #bdc3c3;
orientation: vertical;
padding: 8 12 8 12;
border-radius: 6;
}
element selected {
background-color: @ac;
border-color: #ffffff0A;
text-color: #869fa2;
transition: 20;
}
element-icon {
size: 60;
horizontal-align: 0.5;
vertical-align: 0.5;
}
element-icon {
size: 40;
horizontal-align: 0.5;
vertical-align: 0.5;
}
element-text {
horizontal-align: 0.5;
vertical-align: 0.5;
text-color: inherit;
}
inputbar {
children: [entry];
padding: 4 8 4 8;
background-color: #ffffff03;
border: 0 0 1 0;
border-color: #ffffff0A;
}
prompt {
enabled: false;
}
entry {
font: "FantasqueSansMono Nerd Font 14";
text-color: @txt;
padding: 8 12 8 12;
}

View file

@ -1,121 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon}";
display-drun: "Apps";
show-icons: true;
icon-theme: "Papirus";
location: 0;
yoffset: 0;
xoffset: 0;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: true;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
// Blur
* {
bg: #00000099;
find: #00000099;
txt: #e5e5e5;
border: #e5e5e5;
bg-sel: #00000099;
fg: #ffffff;
}
// black
/*
* {
bg: #000000;
find: #151515;
txt: #e5e5e5;
border: #e5e5e5;
bg-sel: #151515;
fg: #ffffff;
}
*/
// white
/*
* {
bg: #ffffff;
find: #e5e5e5;
txt: #252525;
border: #606060;
bg-sel: #e5e5e5;
fg: #ffffff;
}
*/
* {
background-color: #00000000;
font: "FantasqueSansMono Nerd Font 48";
}
window {
height: 100%;
width: 100%;
transparency: "real";
}
mainbox {
children: [ inputbar, listview ];
padding: 0% 5% 5% 5%;
background-color: @bg;
border: 0;
border-radius: 0;
border-color: @border;
}
listview {
columns: 7;
padding: 1%;
spacing: 2%;
}
element {
border: 0;
border-radius: 8;
text-color: @fg;
orientation: vertical;
padding: 2% 2% 2% 3%;
}
element selected {
background-color: @bg-sel;
border: 0 0 2 0;
border-radius: 8;
border-color: @border;
text-color: @fg;
}
inputbar {
children: [entry];
padding: 4 4 4 4;
margin: 8% 30%;
background-color: @find;
border: 0 0 1 0;
border-radius: 8;
border-color: @border;
}
prompt {
enabled: false;
}
entry {
font: "FantasqueSansMono Nerd Font 12";
text-color: @txt;
padding: 8 12 8 12;
}

View file

@ -1,119 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon}";
display-drun: "Apps";
show-icons: true;
icon-theme: "Papirus";
location: 0;
yoffset: 0;
xoffset: 0;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: false;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
// light
* {
ac: #5294E2;
bg: #ffffff;
bg-alt: #EAEAEA;
fg: #ffffff;
}
// dark
/*
* {
ac: #00BCD4;
bg: #263238;
bg-alt: #293840;
fg: #263238;
}
*/
// blur
/*
* {
ac: #0000008c;
bg: #00000080;
bg-alt: #00000040;
fg: #e5e5e5;
}
*/
* {
background-color: #00000000;
font: "FantasqueSansMono Nerd Font 36";
}
window {
height: 52%;
width: 20%;
anchor: east;
location: east;
x-offset: -1%;
transparency: "real";
}
mainbox {
children: [ inputbar, listview ];
padding: 0% 0% 0% 0%;
background-color: @bg;
border: 0;
border-radius: 12;
border-color: @bg;
}
listview {
columns: 3;
padding: 8;
spacing: 10;
}
element {
border: 0;
text-color: @fg;
background-color: @bg-alt;
orientation: vertical;
padding: 12 12 12 16;
border-radius: 8;
}
element selected {
background-color: @ac;
border-color: @bg;
text-color: @fg;
}
inputbar {
children: [entry];
padding: 4 4 4 4;
margin: 1% 0.5%;
/* change this colors to change style*/
background-color: @ac;
border: 0 0 0 0;
border-radius: 8;
border-color: @fg;
}
prompt {
enabled: false;
}
entry {
font: "FantasqueSansMono Nerd Font 12";
text-color: @fg;
padding: 8 12 8 12;
}

View file

@ -1,107 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon}";
show-icons: true;
icon-theme: "Papirus";
location: 0;
yoffset: 0;
xoffset: 0;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: false;
show-icons: true;
terminal: "alacritty";
sidebar-mode: false;
}
/* colors */
* {
red: #EC5250;
blue: #25B1CA;
green: #2ABB9C;
purple: #5537D2;
}
// black
* {
bg: #000000cc;
bg-sel: #00000066;
fg: #ffffff;
}
// white
/*
* {
bg: #ffffffa6;
bg-sel: #ffffff8c;
fg: #ffffff;
}
*/
* {
background-color: #00000000;
font: "FantasqueSansMono Nerd Font 48";
}
window {
height: 60%;
width: 50%;
transparency: "real";
}
mainbox {
children: [ inputbar, listview ];
padding: 0% 0% 0% 0%;
background-color: @bg;
border: 0;
border-radius: 8;
border-color: @bg;
}
listview {
columns: 6;
padding: 8;
spacing: 10;
}
element {
border: 0;
text-color: @fg;
orientation: vertical;
padding: 12 12 12 20;
border-radius: 8;
}
element selected {
background-color: @bg-sel;
border-color: @bg;
text-color: @fg;
}
inputbar {
children: [entry];
padding: 4 4 4 4;
/* change this colors to change inputbar color*/
background-color: @red;
border: 0 0 0 0;
border-color: @fg;
}
prompt {
enabled: false;
}
entry {
font: "FantasqueSansMono Nerd Font 12";
text-color: @fg;
padding: 8 12 8 12;
}

View file

@ -1,108 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon}";
display-drun: "Apps";
show-icons: true;
icon-theme: "Papirus";
location: 1;
yoffset: 0;
xoffset: 0;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: false;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
/* colors */
* {
red: #EC5250;
blue: #25B1CA;
green: #2ABB9C;
purple: #5537D2;
}
// black
* {
bg: #000000cc;
bg-sel: #00000066;
fg: #ffffff;
}
// white
/*
* {
bg: #ffffffa6;
bg-sel: #ffffff8c;
fg: #ffffff;
}
*/
* {
background-color: #00000000;
font: "FantasqueSansMono Nerd Font 36";
}
window {
height: 100%;
width: 20%;
transparency: "real";
}
mainbox {
children: [ inputbar, listview ];
padding: 0% 0% 0% 0%;
background-color: @bg;
border: 0;
border-radius: 0;
border-color: @bg;
}
listview {
columns: 3;
padding: 8;
spacing: 10;
}
element {
border: 0;
text-color: @fg;
orientation: vertical;
padding: 12 12 12 16;
border-radius: 8;
}
element selected {
background-color: @bg-sel;
border-color: @bg;
text-color: @fg;
}
inputbar {
children: [entry];
padding: 4 4 4 4;
/* change this colors to change style*/
background-color: @red;
border: 0 0 0 0;
border-color: @fg;
}
prompt {
enabled: false;
}
entry {
font: "FantasqueSansMono Nerd Font 12";
text-color: @fg;
padding: 8 12 8 12;
}

View file

@ -1,118 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon} {name}";
display-drun: "Apps";
show-icons: true;
icon-theme: "Papirus-Dark";
location: 2;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: true;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
// black version
* {
bg: #000000;
ac: #869fa214;
ac-txt: #869fa2;
item: #bdc3c3;
txt: #d1d5da;
}
// white version
/*
* {
bg: #ffffff;
ac: #e5e5e5;
ac-txt: #101010;
item: #454545;
txt: #252525;
}
*/
* {
background-color: rgba(0,0,0,0);
font: "FantasqueSansMono Nerd Font 12";
}
window {
transparency: "real";
fullscreen: true;
}
mainbox {
children: [ inputbar, listview ];
margin: 25% 30% 25% 30%;
background-color: @bg;
border-radius: 12;
border: 2;
border-color: #ffffff0A;
}
listview {
columns: 2;
padding: 8;
spacing: 0;
}
element {
border: 1;
text-color: @item;
orientation: vertical;
padding: 8 12 8 12;
border-radius: 6;
}
element selected {
background-color: @ac;
border-color: #ffffff0A;
text-color: @ac-txt;
transition: 20;
}
element-icon {
size: 60;
horizontal-align: 0.5;
vertical-align: 0.5;
}
element-icon {
size: 40;
horizontal-align: 0.5;
vertical-align: 0.5;
}
element-text {
horizontal-align: 0.5;
vertical-align: 0.5;
text-color: inherit;
}
inputbar {
children: [entry];
padding: 4 8 4 8;
background-color: @bg;
border: 0 0 1 0;
border-color: #ffffff0A;
}
prompt {
enabled: false;
}
entry {
text-color: @txt;
padding: 8 12 8 12;
}

View file

@ -1,96 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon} {name}";
display-drun: "Applications";
show-icons: true;
icon-theme: "Papirus";
location: 0;
yoffset: 0;
xoffset: 0;
columns: 2;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: false;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
@import "colors.rasi"
* {
text-font: "Iosevka 12";
inputbar-margin: 3px 3px;
prompt-padding: 10px 10px;
entry-padding: 10px 0px 10px 0px;
list-element-padding: 10px;
list-element-margin: @inputbar-margin;
list-element-border: 0px 0px 0px 4px;
apps-textbox-prompt-colon-padding: 10px -5px 0px 0px;
}
#window {
width: 50%;
height: 60%;
padding: 40px 40px;
}
* {
background-color: @background;
text-color: @foreground;
font: @text-font;
}
inputbar,
prompt,
textbox-prompt-colon,
entry {
background-color: @background-light;
}
#inputbar {
children: [ prompt, textbox-prompt-colon, entry ];
margin: @inputbar-margin;
}
#prompt {
padding: @prompt-padding;
background-color: @accent;
text-color: @background;
}
#textbox-prompt-colon {
expand: false;
str: " :: ";
padding: @apps-textbox-prompt-colon-padding;
}
#entry {
text-color: @accent;
padding: @entry-padding;
}
#element {
padding: @list-element-padding;
margin: @list-element-margin;
border: @list-element-border;
background-color: @background-light;
border-color: @background-light;
}
#element.selected {
background-color: @background-focus;
text-color: @accent;
border-color: @accent;
}

View file

@ -1,94 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon} {name}";
display-drun: "Applications";
show-icons: true;
icon-theme: "Papirus";
location: 0;
columns: 3;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: true;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
@import "colors.rasi"
* {
text-font: "Iosevka 14";
inputbar-margin: 3px 3px;
prompt-padding: 15px 20px;
entry-padding: 15px 15px 15px 0px;
list-element-padding: 10px;
list-element-margin: @inputbar-margin;
list-element-border: 0px 0px 0px 5px;
apps-textbox-prompt-colon-padding: 15px -5px 0px 0px;
}
#window {
width: 100%;
height: 100%;
padding: 120px 100px;
}
* {
background-color: @background;
text-color: @foreground;
font: @text-font;
}
inputbar,
prompt,
textbox-prompt-colon,
entry {
background-color: @background-light;
}
#inputbar {
children: [ prompt, textbox-prompt-colon, entry ];
margin: @inputbar-margin;
}
#prompt {
padding: @prompt-padding;
background-color: @accent;
text-color: @background;
}
#textbox-prompt-colon {
expand: false;
str: " :: ";
padding: @apps-textbox-prompt-colon-padding;
}
#entry {
text-color: @accent;
padding: @entry-padding;
}
#element {
padding: @list-element-padding;
margin: @list-element-margin;
border: @list-element-border;
background-color: @background-light;
border-color: @background-light;
}
#element.selected {
background-color: @background-focus;
text-color: @accent;
border-color: @accent;
}

View file

@ -1,97 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon} {name}";
display-drun: "Applications";
show-icons: true;
icon-theme: "Papirus";
location: 0;
columns: 3;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: true;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
@import "colors.rasi"
* {
text-font: "Iosevka 14";
inputbar-margin: 3px 3px;
prompt-padding: 15px 20px;
entry-padding: 15px 15px 15px 0px;
list-element-padding: 10px;
list-element-margin: @inputbar-margin;
list-element-border: 0px 5px 0px 5px;
apps-textbox-prompt-colon-padding: 15px -5px 0px 0px;
}
#window {
width: 100%;
height: 100%;
padding: 120px 100px;
}
* {
background-color: @background;
text-color: @foreground;
font: @text-font;
}
inputbar,
prompt,
textbox-prompt-colon,
entry {
background-color: @background-light;
border-radius: 10px;
}
#inputbar {
children: [ prompt, textbox-prompt-colon, entry ];
margin: @inputbar-margin;
}
#prompt {
padding: @prompt-padding;
background-color: @accent;
text-color: @background;
}
#textbox-prompt-colon {
expand: false;
str: " :: ";
padding: @apps-textbox-prompt-colon-padding;
}
#entry {
text-color: @accent;
padding: @entry-padding;
}
#element {
padding: @list-element-padding;
margin: @list-element-margin;
border: @list-element-border;
background-color: @background-light;
border-color: @background-light;
border-radius: 10px;
}
#element.selected {
background-color: @background-focus;
text-color: @accent;
border-color: @accent;
border-radius: 10px;
}

View file

@ -1,102 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon} {name}";
display-drun: "Applications";
show-icons: true;
icon-theme: "Papirus";
location: 0;
yoffset: 0;
xoffset: 0;
columns: 2;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: false;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
@import "colors.rasi"
* {
text-font: "Iosevka 12";
inputbar-margin: 3px 3px;
prompt-padding: 10px 10px;
entry-padding: 10px 0px 10px 0px;
list-element-padding: 10px;
list-element-margin: @inputbar-margin;
list-element-border: 0px 4px 0px 4px;
apps-textbox-prompt-colon-padding: 10px -5px 0px 0px;
}
#window {
width: 50%;
height: 60%;
padding: 40px 40px;
border: 0px;
border-radius: 14px;
}
* {
background-color: @background;
text-color: @foreground;
font: @text-font;
}
inputbar,
prompt,
textbox-prompt-colon,
entry {
background-color: @background-light;
border: 0px;
border-radius: 10px;
}
#inputbar {
children: [ prompt, textbox-prompt-colon, entry ];
margin: @inputbar-margin;
}
#prompt {
padding: @prompt-padding;
background-color: @accent;
text-color: @background;
}
#textbox-prompt-colon {
expand: false;
str: " :: ";
padding: @apps-textbox-prompt-colon-padding;
}
#entry {
text-color: @accent;
padding: @entry-padding;
}
#element {
padding: @list-element-padding;
margin: @list-element-margin;
border: @list-element-border;
background-color: @background-light;
border-color: @background-light;
border-radius: 10px;
}
#element.selected {
background-color: @background-focus;
text-color: @accent;
border-color: @accent;
border-radius: 10px;
}

View file

@ -1,104 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon} {name}";
display-drun: "Apps";
show-icons: true;
icon-theme: "Papirus-Dark";
location: 2;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: true;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
// black version
* {
bg: #000000;
fg: #e5e5e5;
ac: #5537D2;
}
* {
background-color: rgba(0,0,0,0);
font: "FantasqueSansMono Nerd Font 12";
}
window {
transparency: "real";
}
mainbox {
children: [ inputbar, listview ];
margin: 25% 40% 25% 40%;
background-color: @bg;
border-radius: 15;
border: 0;
border-color: #ffffff0A;
}
listview {
columns: 1;
padding: 8;
spacing: 0;
}
element {
border: 0;
text-color: @fg;
orientation: vertical;
padding: 8 12 8 12;
border-radius: 12;
}
element selected {
background-color: @ac;
border-color: #ffffff;
text-color: @fg;
transition: 50;
}
element-icon {
size: 60;
horizontal-align: 0.5;
vertical-align: 0.5;
}
element-icon {
size: 40;
horizontal-align: 0.5;
vertical-align: 0.5;
}
element-text {
horizontal-align: 0.5;
vertical-align: 0.5;
text-color: inherit;
}
inputbar {
children: [entry];
padding: 4 8 4 8;
background-color: @fg;
border: 0 0 1 0;
border-color: @fg;
}
prompt {
enabled: false;
}
entry {
text-color: @bg;
padding: 8 12 8 12;
}

View file

@ -1,119 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon} {name}";
display-drun: "Apps";
show-icons: true;
icon-theme: "Papirus";
location: 0;
yoffset: 0;
xoffset: 0;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: false;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
// black version
* {
bg: #151515;
fg: #e5e5e5;
ac: #5537D2;
txt: #ffffff;
}
// white version
/*
* {
bg: #ffffff;
fg: #303030;
ac: #5537D2;
txt: #ffffff;
}
*/
* {
background-color: rgba(0,0,0,0);
font: "Iosevka 12";
}
window {
height: 55%;
width: 40%;
transparency: "real";
}
mainbox {
children: [ inputbar, listview ];
padding: 0% 0% 0% 0%;
background-color: @bg;
border: 0;
border-radius: 0;
border-color: #ffffff0A;
}
listview {
columns: 2;
padding: 8;
spacing: 0;
}
element {
border: 0;
text-color: @fg;
orientation: vertical;
padding: 8 12 8 12;
border-radius: 0;
}
element selected {
background-color: @ac;
border-color: #ffffff;
text-color: @txt;
transition: 50;
}
element-icon {
size: 60;
horizontal-align: 0.5;
vertical-align: 0.5;
}
element-icon {
size: 40;
horizontal-align: 0.5;
vertical-align: 0.5;
}
element-text {
horizontal-align: 0.5;
vertical-align: 0.5;
text-color: inherit;
}
inputbar {
children: [entry];
padding: 4 8 4 8;
background-color: @fg;
border: 0 0 1 0;
border-color: #ffffff;
}
prompt {
enabled: false;
}
entry {
text-color: @bg;
padding: 8 12 8 12;
}

View file

@ -1,108 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon} {name}";
display-drun: "Apps";
show-icons: true;
icon-theme: "Papirus";
location: 0;
yoffset: 0;
xoffset: 0;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: false;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
/* colors */
* {
red: #EC5250;
blue: #25B1CA;
green: #2ABB9C;
purple: #5537D2;
white: #ffffff;
}
// black
/*
* {
bg: #00000099;
bg-sel: #00000066;
fg: #ffffff;
}
*/
// white
* {
bg: #ffffff4d;
bg-sel: #ffffff4d;
fg: #ffffff;
}
* {
background-color: #00000000;
font: "Iosevka 12";
}
window {
height: 36%;
width: 20%;
transparency: "real";
}
mainbox {
children: [ inputbar, listview ];
padding: 0% 0% 0% 0%;
background-color: @bg;
border: 0;
border-radius: 8;
border-color: @bg;
}
listview {
columns: 1;
padding: 0;
spacing: 2;
}
element {
border: 0;
text-color: @fg;
orientation: vertical;
padding: 12 12 12 12;
border-radius: 0;
}
element selected {
background-color: @bg-sel;
border-color: @bg;
text-color: @fg;
}
inputbar {
children: [entry];
padding: 4 4 4 4;
/* change this colors to change style*/
background-color: @red;
border: 0 0 0 0;
border-color: @fg;
}
prompt {
enabled: false;
}
entry {
text-color: @white;
padding: 8 12 8 12;
}

View file

@ -1,108 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
drun-display-format: "{icon} {name}";
display-drun: "Apps";
show-icons: true;
icon-theme: "Papirus";
location: 1;
yoffset: 0;
xoffset: 0;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
fullscreen: false;
show-icons: true;
terminal: "termite";
sidebar-mode: false;
}
/* colors */
* {
red: #EC5250;
blue: #25B1CA;
green: #2ABB9C;
purple: #5537D2;
white: #ffffff;
}
// black
* {
bg: #00000099;
bg-sel: #00000066;
fg: #ffffff;
}
// white
/*
* {
bg: #ffffff8c;
bg-sel: #ffffff8c;
fg: #202020;
}
*/
* {
background-color: #00000000;
font: "Iosevka 12";
}
window {
height: 100%;
width: 20%;
transparency: "real";
}
mainbox {
children: [ inputbar, listview ];
padding: 0% 0% 0% 0%;
background-color: @bg;
border: 0;
border-radius: 0;
border-color: @bg;
}
listview {
columns: 1;
padding: 0;
spacing: 2;
}
element {
border: 0;
text-color: @fg;
orientation: vertical;
padding: 12 12 12 12;
border-radius: 0;
}
element selected {
background-color: @bg-sel;
border-color: @bg;
text-color: @fg;
}
inputbar {
children: [entry];
padding: 4 4 4 4;
/* change this colors to change style*/
background-color: @red;
border: 0 0 0 0;
border-color: @fg;
}
prompt {
enabled: false;
}
entry {
text-color: @white;
padding: 8 12 8 12;
}

View file

@ -1,19 +0,0 @@
#!/usr/bin/env bash
## Author : Aditya Shakya (adi1090x)
## Mail : adi1090x@gmail.com
## Github : @adi1090x
## Reddit : @adi1090x
# Available Styles
#
# >> Edit these files and uncomment the desired colors/style.
#
# style_icons_blur style_icons_full style_icons_rainbow style_icons_rainbow_sidebar
# style_icons_popup style_normal style_normal_grid style_normal_grid_full style_normal_grid_full_round
# style_normal_grid_round style_normal_purple style_normal_purple_alt style_normal_rainbow
# style_normal_rainbow_sidebar
style="style_normal_grid_round"
rofi -no-lazy-grab -show window -theme launchers/"$style".rasi

View file

@ -1,147 +0,0 @@
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
configuration {
font: "FantasqueSansMono Nerd Font 14";
show-icons: false;
icon-theme: "Papirus";
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-radius: 0px;
height: 29%;
width: 47.5%;
location: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 4px 8px 4px 8px;
background-color: @background-alt;
text-color: @foreground;
}
textbox-prompt-colon {
expand: false;
str: "System |";
background-color: @background-alt;
text-color: @foreground;
padding: 4px 0px 4px 25px;
}
inputbar {
children: [ textbox-prompt-colon, prompt ];
background-color: @background-alt;
text-color: @foreground;
expand: false;
border: 1px;
border-radius: 0px;
border-color: @border;
margin: 0px 8% 0px 6%;
padding: 4px 4px 4px 4px;
position: center;
}
entry {
background-color: @background-alt;
text-color: @foreground;
placeholder-color: @foreground;
padding: 4px 8px 4px 8px;
expand: true;
horizontal-align: 0;
placeholder: "Search";
blink: true;
}
case-indicator {
background-color: @background-alt;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background;
margin: 0% 0% 0% 0%;
spacing: 1%;
cycle: false;
dynamic: true;
layout: horizontal;
}
mainbox {
background-color: @background;
spacing: 2%;
children: [ inputbar, listview ];
padding: 4% 0% 0% 2%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: horizontal;
border-radius: 0px;
padding: 0px 0px 0px -5px;
}
element-icon {
size: 65px;
border: 0px;
}
element-text {
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
margin: 30px 30px 30px 35px;
}
element normal.urgent,
element alternate.urgent {
background-color: @urgent;
text-color: @foreground;
border-radius: 10px;
}
element normal.active,
element alternate.active {
background-color: @background-alt;
text-color: @foreground;
}
element selected {
background-color: @selected;
text-color: @foreground;
border: 1px;
border-radius: 0px;
border-color: @border;
}
element selected.urgent {
background-color: @urgent;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}

Some files were not shown because too many files have changed in this diff Show more