first commit
This commit is contained in:
commit
78b79e224f
1
.spacemacs.d
Submodule
1
.spacemacs.d
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 16949cb09e4f2434ceb4330503143dac87ae3c0c
|
1
rofi/Rofication
Submodule
1
rofi/Rofication
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 8dbd06d2d61548bef7651c2c7652940aeafda823
|
1
rofi/bin/apps.sh
Symbolic link
1
rofi/bin/apps.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/apps.sh
|
1
rofi/bin/backlight.sh
Symbolic link
1
rofi/bin/backlight.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/backlight.sh
|
1
rofi/bin/battery.sh
Symbolic link
1
rofi/bin/battery.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/battery.sh
|
1
rofi/bin/menu_apps.sh
Symbolic link
1
rofi/bin/menu_apps.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/menu_apps.sh
|
1
rofi/bin/menu_backlight.sh
Symbolic link
1
rofi/bin/menu_backlight.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/menu_backlight.sh
|
1
rofi/bin/menu_battery.sh
Symbolic link
1
rofi/bin/menu_battery.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/menu_battery.sh
|
1
rofi/bin/menu_mpd.sh
Symbolic link
1
rofi/bin/menu_mpd.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/menu_mpd.sh
|
1
rofi/bin/menu_network.sh
Symbolic link
1
rofi/bin/menu_network.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/menu_network.sh
|
1
rofi/bin/menu_powermenu.sh
Symbolic link
1
rofi/bin/menu_powermenu.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/menu_powermenu.sh
|
1
rofi/bin/menu_quicklinks.sh
Symbolic link
1
rofi/bin/menu_quicklinks.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/menu_quicklinks.sh
|
1
rofi/bin/menu_screenshot.sh
Symbolic link
1
rofi/bin/menu_screenshot.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/menu_screenshot.sh
|
1
rofi/bin/menu_time.sh
Symbolic link
1
rofi/bin/menu_time.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/menu_time.sh
|
1
rofi/bin/menu_volume.sh
Symbolic link
1
rofi/bin/menu_volume.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/menu_volume.sh
|
1
rofi/bin/mpd.sh
Symbolic link
1
rofi/bin/mpd.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/mpd.sh
|
1
rofi/bin/network.sh
Symbolic link
1
rofi/bin/network.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/network.sh
|
1
rofi/bin/powermenu.sh
Symbolic link
1
rofi/bin/powermenu.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/powermenu.sh
|
1
rofi/bin/quicklinks.sh
Symbolic link
1
rofi/bin/quicklinks.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/quicklinks.sh
|
1
rofi/bin/screenshot.sh
Symbolic link
1
rofi/bin/screenshot.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/screenshot.sh
|
1
rofi/bin/time.sh
Symbolic link
1
rofi/bin/time.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/time.sh
|
53
rofi/bin/usedcpu
Executable file
53
rofi/bin/usedcpu
Executable file
|
@ -0,0 +1,53 @@
|
|||
#!/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}"
|
34
rofi/bin/usedram
Executable file
34
rofi/bin/usedram
Executable file
|
@ -0,0 +1,34 @@
|
|||
#!/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
|
1
rofi/bin/volume.sh
Symbolic link
1
rofi/bin/volume.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../scripts/volume.sh
|
1
rofi/config
Normal file
1
rofi/config
Normal file
|
@ -0,0 +1 @@
|
|||
rofi.theme: /usr/share/rofi/themes/Arc-Dark.rasi
|
10
rofi/config.rasi
Normal file
10
rofi/config.rasi
Normal file
|
@ -0,0 +1,10 @@
|
|||
/** Configured For Applets **/
|
||||
|
||||
configuration {
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
location: 5;
|
||||
yoffset: -50;
|
||||
xoffset: -20;
|
||||
}
|
||||
@import "/usr/share/rofi/themes/android_notification.rasi"
|
170
rofi/launchers-git/appdrawer.rasi
Normal file
170
rofi/launchers-git/appdrawer.rasi
Normal file
|
@ -0,0 +1,170 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 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;
|
||||
}
|
||||
|
||||
/* -- Light -- */
|
||||
* {
|
||||
background: #e5e5e5ff;
|
||||
background-alt: #e5e5e5ff;
|
||||
background-ib: #FFFFFFFF;
|
||||
foreground: #000000A6;
|
||||
border: #80808066;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #D7D7D7FF;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
/* -- Dark -- */
|
||||
/*
|
||||
* {
|
||||
background: #212121ff;
|
||||
background-alt: #212121ff;
|
||||
background-ib: #151515FF;
|
||||
foreground: #EDEDEDFF;
|
||||
border: #EDEDED4d;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #151515ff;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 0px;
|
||||
border-radius: 0px;
|
||||
border-color: @border;
|
||||
height: 100%;
|
||||
width: 35%;
|
||||
location: west;
|
||||
anchor: west;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0px 8px 0px 4px;
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 20";
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 0px 0px 2px 0px;
|
||||
border-radius: 30px;
|
||||
border-color: @border;
|
||||
margin: 10px 5px 0px 5px;
|
||||
padding: 6px 6px 6px 6px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
padding: 3px 0px 3px 0px;
|
||||
placeholder: "Search Apps";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 5;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 10px;
|
||||
padding: 8px 15px 8px 15px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0px;
|
||||
margin: 0px 5px 0px 5px;
|
||||
padding: 10px 0px 10px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0px 0px 2px 0px;
|
||||
border-radius: 4px;
|
||||
border-color: @border-sel;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
170
rofi/launchers-git/appfolder.rasi
Normal file
170
rofi/launchers-git/appfolder.rasi
Normal file
|
@ -0,0 +1,170 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 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;
|
||||
}
|
||||
|
||||
/* -- Light -- */
|
||||
* {
|
||||
background: #e5e5e5ff;
|
||||
background-alt: #e5e5e5ff;
|
||||
background-ib: #FFFFFFFF;
|
||||
foreground: #000000A6;
|
||||
border: #80808066;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #D7D7D7FF;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
/* -- Dark -- */
|
||||
/*
|
||||
* {
|
||||
background: #212121ff;
|
||||
background-alt: #212121ff;
|
||||
background-ib: #151515FF;
|
||||
foreground: #EDEDEDFF;
|
||||
border: #EDEDED4d;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #151515ff;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 0px;
|
||||
border-radius: 4px;
|
||||
border-color: @border;
|
||||
height: 47%;
|
||||
width: 28%;
|
||||
location: east;
|
||||
anchor: east;
|
||||
x-offset: -15;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: false;
|
||||
padding: 0px 8px 0px 4px;
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 20";
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 0px 0px 2px 0px;
|
||||
border-radius: 4px;
|
||||
border-color: @border;
|
||||
margin: 5px 0px 0px 0px;
|
||||
padding: 5px 5px 5px 5px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
padding: 3px 0px 3px 0px;
|
||||
placeholder: "Search";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 4;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 12px;
|
||||
padding: 8px 12px 8px 12px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0px;
|
||||
margin: 0px 0px 0px 0px;
|
||||
padding: 10px 0px 10px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 44px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0px 0px 2px 0px;
|
||||
border-radius: 4px;
|
||||
border-color: @border-sel;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
159
rofi/launchers-git/blurry.rasi
Normal file
159
rofi/launchers-git/blurry.rasi
Normal file
|
@ -0,0 +1,159 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 10";
|
||||
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: 15px;
|
||||
border: 0px;
|
||||
// height: 60%;
|
||||
width: 50%;
|
||||
location: center;
|
||||
anchor: center;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
border-radius: 15px;
|
||||
background-color: @background-color;
|
||||
transparency: "real";
|
||||
}
|
||||
|
||||
inputbar {
|
||||
background-color: @background-alt;
|
||||
text-color: @transparent;
|
||||
expand: false;
|
||||
border-radius: 26px;
|
||||
margin: 0px 0px 0px 0px;
|
||||
padding: 10px 10px 10px 10px;
|
||||
position: north;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: -5px 10px 0px 8px;
|
||||
background-color: @transparent;
|
||||
font: "FantasqueSansMono Nerd Font 16";
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @transparent;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
placeholder: "Search";
|
||||
blink: true;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
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: 30px 25px 15px 25px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: horizontal;
|
||||
border-radius: 6px;
|
||||
padding: 5px 0px 5px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 25px;
|
||||
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;
|
||||
}
|
141
rofi/launchers-git/blurry_full.rasi
Normal file
141
rofi/launchers-git/blurry_full.rasi
Normal file
|
@ -0,0 +1,141 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 10";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
drun-display-format: "{name}";
|
||||
threads: 0;
|
||||
scroll-method: 0;
|
||||
disable-history: false;
|
||||
fullscreen: false;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
* {
|
||||
background: #00000000;
|
||||
background-color: #00000066;
|
||||
background-entry: #00000033;
|
||||
background-alt: #f2f2f215;
|
||||
foreground: #f2f2f2EE;
|
||||
foreground-selected: #ffffffFF;
|
||||
urgent: #E91E6366;
|
||||
urgent-selected: #E91E6377;
|
||||
}
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
location: northwest;
|
||||
anchor: northwest;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: false;
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background-alt;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border-radius: 6px;
|
||||
margin: 0px 430px 0px 430px;
|
||||
padding: 10px 10px 10px 10px;
|
||||
position: north;
|
||||
}
|
||||
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
placeholder: "Search applications";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 7;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background-color;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 25px;
|
||||
padding: 70px 135px 55px 135px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 9px;
|
||||
padding: 20px 0px 20px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 65px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
169
rofi/launchers-git/column.rasi
Normal file
169
rofi/launchers-git/column.rasi
Normal file
|
@ -0,0 +1,169 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 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;
|
||||
}
|
||||
|
||||
/* -- Light -- */
|
||||
* {
|
||||
background: #e5e5e5ff;
|
||||
background-alt: #e5e5e5ff;
|
||||
background-ib: #FFFFFFFF;
|
||||
foreground: #000000A6;
|
||||
border: #80808066;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #D7D7D7FF;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
/* -- Dark -- */
|
||||
/*
|
||||
* {
|
||||
background: #212121ff;
|
||||
background-alt: #212121ff;
|
||||
background-ib: #151515FF;
|
||||
foreground: #EDEDEDFF;
|
||||
border: #EDEDED4d;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #151515ff;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 0px;
|
||||
border-radius: 0px;
|
||||
border-color: @border;
|
||||
height: 100%;
|
||||
width: 10%;
|
||||
location: east;
|
||||
anchor: east;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0px 4px 0px 4px;
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 20";
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 0px 0px 2px 0px;
|
||||
border-radius: 4px;
|
||||
border-color: @border;
|
||||
margin: 10px 5px 0px 5px;
|
||||
padding: 6px 6px 6px 6px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
padding: 3px 0px 3px 0px;
|
||||
placeholder: "Search ...";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 1;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 10px;
|
||||
padding: 5px 5px 5px 5px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0px;
|
||||
margin: 0px 5px 0px 5px;
|
||||
padding: 10px 0px 10px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0px 0px 2px 0px;
|
||||
border-radius: 4px;
|
||||
border-color: @border-sel;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
17
rofi/launchers-git/emoji.sh
Executable file
17
rofi/launchers-git/emoji.sh
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/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
|
||||
#
|
||||
# blurry blurry_full kde_simplemenu kde_krunner launchpad
|
||||
# gnome_do slingshot appdrawer appfolder column
|
||||
# row row_center screen row_dock row_dropdown
|
||||
|
||||
style="blurry"
|
||||
|
||||
rofi -no-lazy-grab -show emoji -theme launchers-git/"$style".rasi
|
17
rofi/launchers-git/finder.sh
Executable file
17
rofi/launchers-git/finder.sh
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/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
|
||||
#
|
||||
# blurry blurry_full kde_simplemenu kde_krunner launchpad
|
||||
# gnome_do slingshot appdrawer appfolder column
|
||||
# row row_center screen row_dock row_dropdown
|
||||
|
||||
style="blurry"
|
||||
|
||||
rofi -no-lazy-grab -show find -modi find:~/.local/share/rofi/finder.sh -theme launchers-git/"$style".rasi
|
203
rofi/launchers-git/gnome_do.rasi
Normal file
203
rofi/launchers-git/gnome_do.rasi
Normal file
|
@ -0,0 +1,203 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "FantasqueSansMono Nerd Font 12";
|
||||
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;
|
||||
}
|
||||
|
||||
/* -- Classical -- */
|
||||
* {
|
||||
background: #27639AFF;
|
||||
background-color: #27639AFF;
|
||||
background-entry: #00000033;
|
||||
background-alt: #f2f2f240;
|
||||
foreground: #f2f2f2EE;
|
||||
foreground-selected: #ffffffFF;
|
||||
urgent: #E91E6366;
|
||||
urgent-selected: #E91E6377;
|
||||
}
|
||||
|
||||
/* -- Transparent -- */
|
||||
/*
|
||||
* {
|
||||
background: #00000000;
|
||||
background-color: #00000066;
|
||||
background-entry: #00000033;
|
||||
background-alt: #f2f2f215;
|
||||
foreground: #f2f2f2EE;
|
||||
foreground-selected: #ffffffFF;
|
||||
urgent: #E91E6366;
|
||||
urgent-selected: #E91E6377;
|
||||
}
|
||||
*/
|
||||
|
||||
/* -- Light -- */
|
||||
/*
|
||||
* {
|
||||
background: #e5e5e5ff;
|
||||
background-color: #e5e5e5ff;
|
||||
background-entry: #00000033;
|
||||
background-alt: #20202040;
|
||||
foreground: #404040EE;
|
||||
foreground-selected: #252525FF;
|
||||
urgent: #E91E6366;
|
||||
urgent-selected: #E91E6377;
|
||||
}
|
||||
*/
|
||||
|
||||
/* -- Dark -- */
|
||||
/*
|
||||
* {
|
||||
background: #252525ff;
|
||||
background-color: #252525ff;
|
||||
background-entry: #00000033;
|
||||
background-alt: #10101040;
|
||||
foreground: #e5e5e5EE;
|
||||
foreground-selected: #ffffffFF;
|
||||
urgent: #E91E6366;
|
||||
urgent-selected: #E91E6377;
|
||||
}
|
||||
*/
|
||||
|
||||
/* -- Black -- */
|
||||
/*
|
||||
* {
|
||||
background: #000000ff;
|
||||
background-color: #000000ff;
|
||||
background-entry: #00000033;
|
||||
background-alt: #101010ff;
|
||||
foreground: #e5e5e5EE;
|
||||
foreground-selected: #ffffffFF;
|
||||
urgent: #E91E6366;
|
||||
urgent-selected: #E91E6377;
|
||||
}
|
||||
*/
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border-radius: 25px;
|
||||
height: 30%;
|
||||
width: 30%;
|
||||
location: center;
|
||||
anchor: center;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: false;
|
||||
padding: 0px 8px 0px 4px;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 16";
|
||||
}
|
||||
|
||||
inputbar {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border-radius: 30px;
|
||||
margin: 0px 0px 0px 0px;
|
||||
padding: 5px 5px 5px 5px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
placeholder: " Search";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 2;
|
||||
spacing: 4px;
|
||||
cycle: true;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background-color;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 10px;
|
||||
padding: 10px 10px 10px 10px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 25px;
|
||||
padding: 30px 0px 30px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 86px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
175
rofi/launchers-git/kde_krunner.rasi
Normal file
175
rofi/launchers-git/kde_krunner.rasi
Normal file
|
@ -0,0 +1,175 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 10";
|
||||
show-icons: true;
|
||||
icon-theme: "Breeze";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
threads: 0;
|
||||
scroll-method: 0;
|
||||
disable-history: false;
|
||||
fullscreen: false;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
/* -- Breeze Light-- */
|
||||
* {
|
||||
background: #EFF0F1FF;
|
||||
background-alt: #EFF0F1FF;
|
||||
foreground: #000000A6;
|
||||
border: #3DAEE9FF;
|
||||
selected: #93CEE999;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
/* -- Breeze Dark-- */
|
||||
/*
|
||||
* {
|
||||
background: #31363bff;
|
||||
background-alt: #31363bff;
|
||||
foreground: #f5f5f5e6;
|
||||
border: #1d99f3ff;
|
||||
selected: #3daee966;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
/* -- Black-- */
|
||||
/*
|
||||
* {
|
||||
background: #000000ff;
|
||||
background-alt: #000000ff;
|
||||
foreground: #f5f5f5b3;
|
||||
border: #1d99f3ff;
|
||||
selected: #3daee966;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border-radius: 0px;
|
||||
height: 40%;
|
||||
width: 40%;
|
||||
location: north;
|
||||
anchor: north;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0px 8px 0px 4px;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 16";
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 1px;
|
||||
border-radius: 2px;
|
||||
border-color: @border;
|
||||
margin: 0px 0px 0px 0px;
|
||||
padding: 5px 5px 5px 5px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
placeholder: "Search";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 1;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 8px;
|
||||
padding: 8px 8px 8px 8px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: horizontal;
|
||||
border-radius: 4px;
|
||||
padding: 4px 4px 4px 4px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 24px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
vertical-align: 0;
|
||||
margin: 2px 0px 2px 2px;
|
||||
}
|
||||
|
||||
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: @selected;
|
||||
text-color: @foreground;
|
||||
border: 1px;
|
||||
border-radius: 2px;
|
||||
border-color: @border;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
175
rofi/launchers-git/kde_simplemenu.rasi
Normal file
175
rofi/launchers-git/kde_simplemenu.rasi
Normal file
|
@ -0,0 +1,175 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 10";
|
||||
show-icons: true;
|
||||
icon-theme: "Breeze";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
threads: 0;
|
||||
scroll-method: 0;
|
||||
disable-history: false;
|
||||
fullscreen: false;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
/* -- Breeze Light-- */
|
||||
* {
|
||||
background: #EFF0F1FF;
|
||||
background-alt: #EFF0F1FF;
|
||||
foreground: #000000A6;
|
||||
border: #3DAEE9FF;
|
||||
selected: #93CEE999;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
/* -- Breeze Dark-- */
|
||||
/*
|
||||
* {
|
||||
background: #31363bff;
|
||||
background-alt: #31363bff;
|
||||
foreground: #f5f5f5e6;
|
||||
border: #1d99f3ff;
|
||||
selected: #3daee966;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
/* -- Black-- */
|
||||
/*
|
||||
* {
|
||||
background: #000000ff;
|
||||
background-alt: #000000ff;
|
||||
foreground: #f5f5f5b3;
|
||||
border: #1d99f3ff;
|
||||
selected: #3daee966;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border-radius: 0px;
|
||||
height: 55%;
|
||||
width: 48%;
|
||||
location: center;
|
||||
anchor: center;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0px 8px 0px 4px;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 16";
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 1px;
|
||||
border-radius: 2px;
|
||||
border-color: @border;
|
||||
margin: 0px 0px 0px 0px;
|
||||
padding: 5px 5px 5px 5px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
placeholder: "Search";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 6;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 15px;
|
||||
padding: 8px 8px 8px 8px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 4px;
|
||||
padding: 10px 0px 10px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 65px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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: @selected;
|
||||
text-color: @foreground;
|
||||
border: 1px;
|
||||
border-radius: 2px;
|
||||
border-color: @border;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
17
rofi/launchers-git/launcher.sh
Executable file
17
rofi/launchers-git/launcher.sh
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/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
|
||||
#
|
||||
# blurry blurry_full kde_simplemenu kde_krunner launchpad
|
||||
# gnome_do slingshot appdrawer appfolder column
|
||||
# row row_center screen row_dock row_dropdown
|
||||
|
||||
style="blurry"
|
||||
|
||||
rofi -no-lazy-grab -show drun -modi drun,window,calc,ssh,run,emoji -monitor 1 -theme launchers-git/"$style".rasi && xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -name rofi
|
148
rofi/launchers-git/launchpad.rasi
Normal file
148
rofi/launchers-git/launchpad.rasi
Normal file
|
@ -0,0 +1,148 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 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;
|
||||
}
|
||||
|
||||
* {
|
||||
background: #00000000;
|
||||
background-color: #00000066;
|
||||
background-entry: #00000033;
|
||||
background-alt: #f2f2f215;
|
||||
foreground: #f2f2f2EE;
|
||||
foreground-selected: #ffffffFF;
|
||||
border: #ffffff66;
|
||||
urgent: #E91E6366;
|
||||
urgent-selected: #E91E6377;
|
||||
}
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
location: northwest;
|
||||
anchor: northwest;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0px 8px 0px 4px;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 16";
|
||||
}
|
||||
|
||||
inputbar {
|
||||
background-color: @background-alt;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border-radius: 6px;
|
||||
border: 1px;
|
||||
border-color: @border;
|
||||
margin: 0px 380px 0px 380px;
|
||||
padding: 5px 5px 5px 5px;
|
||||
position: north;
|
||||
}
|
||||
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
placeholder: "Search";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 7;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background-color;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 25px;
|
||||
padding: 70px 135px 55px 135px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 9px;
|
||||
padding: 20px 0px 20px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 65px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
170
rofi/launchers-git/row.rasi
Normal file
170
rofi/launchers-git/row.rasi
Normal file
|
@ -0,0 +1,170 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 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;
|
||||
}
|
||||
|
||||
/* -- Light -- */
|
||||
* {
|
||||
background: #e5e5e5ff;
|
||||
background-alt: #e5e5e5ff;
|
||||
background-ib: #FFFFFFFF;
|
||||
foreground: #000000A6;
|
||||
border: #80808066;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #D7D7D7FF;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
/* -- Dark -- */
|
||||
/*
|
||||
* {
|
||||
background: #212121ff;
|
||||
background-alt: #212121ff;
|
||||
background-ib: #151515FF;
|
||||
foreground: #EDEDEDFF;
|
||||
border: #EDEDED4d;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #151515ff;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 0px;
|
||||
border-radius: 0px;
|
||||
border-color: @border;
|
||||
height: 25%;
|
||||
width: 100%;
|
||||
location: south;
|
||||
anchor: south;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0px 8px 0px 8px;
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 20";
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 0px 0px 2px 0px;
|
||||
border-radius: 30px;
|
||||
border-color: @border;
|
||||
margin: 10px 73% 0px 5px;
|
||||
padding: 6px 6px 6px 6px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
padding: 3px 0px 3px 0px;
|
||||
placeholder: "Search Applications";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 10;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 10px;
|
||||
padding: 5px 5px 5px 5px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0px;
|
||||
margin: 0px 5px 0px 5px;
|
||||
padding: 10px 0px 10px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0px 0px 3px 0px;
|
||||
border-radius: 15px;
|
||||
border-color: @border-sel;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
170
rofi/launchers-git/row_center.rasi
Normal file
170
rofi/launchers-git/row_center.rasi
Normal file
|
@ -0,0 +1,170 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 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;
|
||||
}
|
||||
|
||||
/* -- Light -- */
|
||||
* {
|
||||
background: #e5e5e5ff;
|
||||
background-alt: #e5e5e5ff;
|
||||
background-ib: #FFFFFFFF;
|
||||
foreground: #000000A6;
|
||||
border: #80808066;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #D7D7D7FF;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
/* -- Dark -- */
|
||||
/*
|
||||
* {
|
||||
background: #212121ff;
|
||||
background-alt: #212121ff;
|
||||
background-ib: #151515FF;
|
||||
foreground: #EDEDEDFF;
|
||||
border: #EDEDED4d;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #151515ff;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 0px;
|
||||
border-radius: 0px;
|
||||
border-color: @border;
|
||||
height: 40%;
|
||||
width: 100%;
|
||||
location: center;
|
||||
anchor: center;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0px 8px 0px 8px;
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 20";
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 0px 0px 0px 4px;
|
||||
border-radius: 0px 20px 20px 0px;
|
||||
border-color: @border-sel;
|
||||
margin: 10px 73% 0px 5px;
|
||||
padding: 6px 6px 6px 6px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
padding: 3px 0px 3px 0px;
|
||||
placeholder: "Search Applications";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 10;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 10px;
|
||||
padding: 5px 5px 5px 5px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0px;
|
||||
margin: 0px 5px 0px 5px;
|
||||
padding: 10px 0px 10px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0px 0px 0px 4px;
|
||||
border-radius: 0px;
|
||||
border-color: @border-sel;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
170
rofi/launchers-git/row_dock.rasi
Normal file
170
rofi/launchers-git/row_dock.rasi
Normal file
|
@ -0,0 +1,170 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 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;
|
||||
}
|
||||
|
||||
/* -- Light -- */
|
||||
* {
|
||||
background: #e5e5e5ff;
|
||||
background-alt: #e5e5e5ff;
|
||||
background-ib: #FFFFFFFF;
|
||||
foreground: #000000A6;
|
||||
border: #80808066;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #D7D7D7FF;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
/* -- Dark -- */
|
||||
/*
|
||||
* {
|
||||
background: #212121ff;
|
||||
background-alt: #212121ff;
|
||||
background-ib: #151515FF;
|
||||
foreground: #EDEDEDFF;
|
||||
border: #EDEDED4d;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #151515ff;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 0px;
|
||||
border-radius: 25px 25px 0px 0px;
|
||||
border-color: @border;
|
||||
height: 40%;
|
||||
width: 100%;
|
||||
location: south;
|
||||
anchor: south;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: false;
|
||||
padding: 0px 8px 0px 8px;
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 20";
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 0px 0px 2px 0px;
|
||||
border-radius: 30px;
|
||||
border-color: @border;
|
||||
margin: 10px 35% 0% 35%;
|
||||
padding: 6px 6px 6px 6px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
padding: 3px 0px 3px 0px;
|
||||
placeholder: "Search Applications";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 10;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 10px;
|
||||
padding: 5px 5px 5px 5px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0px;
|
||||
margin: 0px 5px 0px 5px;
|
||||
padding: 10px 0px 10px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0px 0px 3px 0px;
|
||||
border-radius: 15px;
|
||||
border-color: @border-sel;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
169
rofi/launchers-git/row_dropdown.rasi
Normal file
169
rofi/launchers-git/row_dropdown.rasi
Normal file
|
@ -0,0 +1,169 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 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;
|
||||
}
|
||||
|
||||
/* -- Light -- */
|
||||
* {
|
||||
background: #e5e5e5ff;
|
||||
background-alt: #e5e5e5ff;
|
||||
background-ib: #FFFFFFFF;
|
||||
foreground: #000000A6;
|
||||
border: #80808066;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #D7D7D7FF;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
/* -- Dark -- */
|
||||
|
||||
* {
|
||||
background: #212121ff;
|
||||
background-alt: #212121ff;
|
||||
background-ib: #151515FF;
|
||||
foreground: #EDEDEDFF;
|
||||
border: #EDEDED4d;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #151515ff;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 0px;
|
||||
border-radius: 0px 0px 25px 25px;
|
||||
border-color: @border;
|
||||
height: 40%;
|
||||
width: 100%;
|
||||
location: north;
|
||||
anchor: north;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: false;
|
||||
padding: 0px 8px 0px 8px;
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 20";
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 0px 0px 2px 0px;
|
||||
border-radius: 30px;
|
||||
border-color: @border;
|
||||
margin: 10px 35% 0% 35%;
|
||||
padding: 6px 6px 6px 6px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
padding: 3px 0px 3px 0px;
|
||||
placeholder: "Search Applications";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 10;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 10px;
|
||||
padding: 5px 5px 5px 5px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0px;
|
||||
margin: 0px 5px 0px 5px;
|
||||
padding: 10px 0px 10px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0px 0px 3px 0px;
|
||||
border-radius: 15px;
|
||||
border-color: @border-sel;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
170
rofi/launchers-git/screen.rasi
Normal file
170
rofi/launchers-git/screen.rasi
Normal file
|
@ -0,0 +1,170 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 10";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
threads: 0;
|
||||
scroll-method: 0;
|
||||
disable-history: false;
|
||||
fullscreen: true;
|
||||
hide-scrollbar: true;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
/* -- Light -- */
|
||||
* {
|
||||
background: #e5e5e5ff;
|
||||
background-alt: #e5e5e5ff;
|
||||
background-ib: #FFFFFFFF;
|
||||
foreground: #000000A6;
|
||||
border: #80808066;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #D7D7D7FF;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
/* -- Dark -- */
|
||||
/*
|
||||
* {
|
||||
background: #212121ff;
|
||||
background-alt: #212121ff;
|
||||
background-ib: #151515FF;
|
||||
foreground: #EDEDEDFF;
|
||||
border: #EDEDED4d;
|
||||
border-sel: #1A73E9FF;
|
||||
selected: #151515ff;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 0px;
|
||||
border-radius: 0px;
|
||||
border-color: @border;
|
||||
height: 93%;
|
||||
width: 98%;
|
||||
location: center;
|
||||
anchor: center;
|
||||
x-offset: 0;
|
||||
y-offset: 10;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0px 8px 0px 8px;
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 20";
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 0px 0px 0px 4px;
|
||||
border-radius: 0px 20px 20px 0px;
|
||||
border-color: @border-sel;
|
||||
margin: 10px 50% 0px 5px;
|
||||
padding: 6px 6px 6px 6px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
padding: 3px 0px 3px 0px;
|
||||
placeholder: "Search Applications";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background-ib;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 8;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 30px;
|
||||
padding: 130px 100px 100px 100px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0px;
|
||||
margin: 0px 5px 0px 5px;
|
||||
padding: 20px 0px 10px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0px 0px 0px 4px;
|
||||
border-radius: 0px;
|
||||
border-color: @border-sel;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
165
rofi/launchers-git/slingshot.rasi
Normal file
165
rofi/launchers-git/slingshot.rasi
Normal file
|
@ -0,0 +1,165 @@
|
|||
/*
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Reddit : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "Noto Sans 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;
|
||||
}
|
||||
|
||||
/* -- Light -- */
|
||||
* {
|
||||
background: #F5F5F5FF;
|
||||
background-alt: #F5F5F5FF;
|
||||
foreground: #000000A6;
|
||||
border: #80808066;
|
||||
selected: #D7D7D7FF;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
|
||||
/* -- Dark -- */
|
||||
/*
|
||||
* {
|
||||
background: #3E4148FF;
|
||||
background-alt: #3E4148FF;
|
||||
foreground: #F5F5F5FF;
|
||||
border: #00000066;
|
||||
selected: #363A3FFF;
|
||||
urgent: #DA4453FF;
|
||||
}
|
||||
*/
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 0px;
|
||||
border-radius: 5px;
|
||||
border-color: @border;
|
||||
height: 55%;
|
||||
width: 42%;
|
||||
location: west;
|
||||
anchor: west;
|
||||
x-offset: 10;
|
||||
y-offset: -135;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0px 4px 0px 4px;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 16";
|
||||
}
|
||||
|
||||
|
||||
inputbar {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 1px;
|
||||
border-radius: 2px;
|
||||
border-color: @border;
|
||||
margin: 5px 5px 0px 5px;
|
||||
padding: 2px 2px 2px 2px;
|
||||
position: center;
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
placeholder: "Search Applications";
|
||||
blink: true;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 5;
|
||||
spacing: 4px;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 10px;
|
||||
padding: 8px 8px 8px 8px;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 6px;
|
||||
margin: 0px 5px 0px 5px;
|
||||
padding: 10px 0px 10px 0px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
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: @selected;
|
||||
text-color: @foreground;
|
||||
border: 1px;
|
||||
border-radius: 4px;
|
||||
border-color: @border;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
149
rofi/launchers-ribbon/full_bottom.rasi
Normal file
149
rofi/launchers-ribbon/full_bottom.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/full_left.rasi
Normal file
149
rofi/launchers-ribbon/full_left.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/full_right.rasi
Normal file
149
rofi/launchers-ribbon/full_right.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/full_top.rasi
Normal file
149
rofi/launchers-ribbon/full_top.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
18
rofi/launchers-ribbon/launcher.sh
Executable file
18
rofi/launchers-ribbon/launcher.sh
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/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
|
149
rofi/launchers-ribbon/ribbon_bottom.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_bottom.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_bottom_round.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_bottom_round.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_bottom_single.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_bottom_single.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_bottom_single_round.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_bottom_single_round.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_left.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_left.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_left_round.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_left_round.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_left_single.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_left_single.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_left_single_round.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_left_single_round.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_right.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_right.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_right_round.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_right_round.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_top.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_top.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_top_round.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_top_round.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_top_single.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_top_single.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-ribbon/ribbon_top_single_round.rasi
Normal file
149
rofi/launchers-ribbon/ribbon_top_single_round.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
9
rofi/launchers-ribbon/styles/berry.rasi
Normal file
9
rofi/launchers-ribbon/styles/berry.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #2D142Cff;
|
||||
background-alt: #2D142Cff;
|
||||
foreground: #ffffffA6;
|
||||
border: #EE4540ff;
|
||||
border-alt: #C92A42ff;
|
||||
selected: #510A3299;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers-ribbon/styles/bluish.rasi
Normal file
9
rofi/launchers-ribbon/styles/bluish.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #EFF0F1FF;
|
||||
background-alt: #EFF0F1FF;
|
||||
foreground: #000000A6;
|
||||
border: #000B83FF;
|
||||
border-alt: #3DAEE9FF;
|
||||
selected: #93CEE999;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers-ribbon/styles/cocoa.rasi
Normal file
9
rofi/launchers-ribbon/styles/cocoa.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #413E4Aff;
|
||||
background-alt: #413E4Aff;
|
||||
foreground: #F7C7B2ff;
|
||||
border: #B38184ff;
|
||||
border-alt: #F3B69Eff;
|
||||
selected: #B381841a;
|
||||
urgent: #DA4453FF;
|
||||
}
|
10
rofi/launchers-ribbon/styles/colors.rasi
Normal file
10
rofi/launchers-ribbon/styles/colors.rasi
Normal file
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
* Change the colorscheme for every menu simply by editing this file...
|
||||
*
|
||||
* Available Color Schemes
|
||||
*
|
||||
* bluish berry nordic nightly gotham mask faded cocoa
|
||||
*
|
||||
*/
|
||||
|
||||
@import "nordic.rasi"
|
9
rofi/launchers-ribbon/styles/faded.rasi
Normal file
9
rofi/launchers-ribbon/styles/faded.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #5E6C91ff;
|
||||
background-alt: #5E6C91ff;
|
||||
foreground: #FFFCFFff;
|
||||
border: #FF83A7ff;
|
||||
border-alt: #F4BB6Cff;
|
||||
selected: #A0B5F44c;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers-ribbon/styles/gotham.rasi
Normal file
9
rofi/launchers-ribbon/styles/gotham.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #29384Fff;
|
||||
background-alt: #29384Fff;
|
||||
foreground: #FEFFF1ff;
|
||||
border: #345B7Cff;
|
||||
border-alt: #715979ff;
|
||||
selected: #C46C851a;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers-ribbon/styles/mask.rasi
Normal file
9
rofi/launchers-ribbon/styles/mask.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #434C6Dff;
|
||||
background-alt: #434C6Dff;
|
||||
foreground: #FAF7CCff;
|
||||
border: #CA8CA5ff;
|
||||
border-alt: #F0B2B3ff;
|
||||
selected: #EFD4B61a;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers-ribbon/styles/nightly.rasi
Normal file
9
rofi/launchers-ribbon/styles/nightly.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #2A3950ff;
|
||||
background-alt: #2A3950ff;
|
||||
foreground: #FEFFF1ff;
|
||||
border: #A162F7ff;
|
||||
border-alt: #45E3FFff;
|
||||
selected: #6F88FE1a;
|
||||
urgent: #DA4453FF;
|
||||
}
|
9
rofi/launchers-ribbon/styles/nordic.rasi
Normal file
9
rofi/launchers-ribbon/styles/nordic.rasi
Normal file
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
background: #475C7Bff;
|
||||
background-alt: #475C7Bff;
|
||||
foreground: #ffffffcc;
|
||||
border: #FDBB6Dff;
|
||||
border-alt: #DA717Fff;
|
||||
selected: #685E79ff;
|
||||
urgent: #DA4453FF;
|
||||
}
|
14
rofi/launchers-slate/launcher.sh
Executable file
14
rofi/launchers-slate/launcher.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/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
|
149
rofi/launchers-slate/slate.rasi
Normal file
149
rofi/launchers-slate/slate.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-slate/slate_full.rasi
Normal file
149
rofi/launchers-slate/slate_full.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
149
rofi/launchers-slate/slate_full_big.rasi
Normal file
149
rofi/launchers-slate/slate_full_big.rasi
Normal file
|
@ -0,0 +1,149 @@
|
|||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
36
rofi/launchers-slate/styles/Amber.rasi
Normal file
36
rofi/launchers-slate/styles/Amber.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Amber -- */
|
||||
|
||||
* {
|
||||
shade1: #FF6F00;
|
||||
shade2: #FF8F00;
|
||||
shade3: #FFA000;
|
||||
shade4: #FFB300;
|
||||
shade5: #FFC107;
|
||||
shade6: #FFCA28;
|
||||
shade7: #FFD54F;
|
||||
shade8: #FFE082;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #404040;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #404040;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Black.rasi
Normal file
36
rofi/launchers-slate/styles/Black.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Gray -- */
|
||||
|
||||
* {
|
||||
shade1: #000000;
|
||||
shade2: #050505;
|
||||
shade3: #101010;
|
||||
shade4: #151515;
|
||||
shade5: #202020;
|
||||
shade6: #252525;
|
||||
shade7: #303030;
|
||||
shade8: #353535;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade2;
|
||||
border-alt: @shade3;
|
||||
background: @shade4;
|
||||
background-alt: @shade5;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Blue.rasi
Normal file
36
rofi/launchers-slate/styles/Blue.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Blue -- */
|
||||
|
||||
* {
|
||||
shade1: #0D47A1;
|
||||
shade2: #1565C0;
|
||||
shade3: #1976D2;
|
||||
shade4: #1E88E5;
|
||||
shade5: #2196F3;
|
||||
shade6: #42A5F5;
|
||||
shade7: #64B5F6;
|
||||
shade8: #90CAF9;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #202020;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Blue_gray.rasi
Normal file
36
rofi/launchers-slate/styles/Blue_gray.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Blue Gray -- */
|
||||
|
||||
* {
|
||||
shade1: #263238;
|
||||
shade2: #37474F;
|
||||
shade3: #455A64;
|
||||
shade4: #546E7A;
|
||||
shade5: #607D8B;
|
||||
shade6: #78909C;
|
||||
shade7: #90A4AE;
|
||||
shade8: #B0BEC5;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Brown.rasi
Normal file
36
rofi/launchers-slate/styles/Brown.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Brown -- */
|
||||
|
||||
* {
|
||||
shade1: #3E2723;
|
||||
shade2: #4E342E;
|
||||
shade3: #5D4037;
|
||||
shade4: #6D4C41;
|
||||
shade5: #795548;
|
||||
shade6: #8D6E63;
|
||||
shade7: #A1887F;
|
||||
shade8: #BCAAA4;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Cyan.rasi
Normal file
36
rofi/launchers-slate/styles/Cyan.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Cyan -- */
|
||||
|
||||
* {
|
||||
shade1: #006064;
|
||||
shade2: #00838F;
|
||||
shade3: #0097A7;
|
||||
shade4: #00ACC1;
|
||||
shade5: #00BCD4;
|
||||
shade6: #26C6DA;
|
||||
shade7: #4DD0E1;
|
||||
shade8: #80DEEA;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #303030;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Deep_orange.rasi
Normal file
36
rofi/launchers-slate/styles/Deep_orange.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Deep Orange -- */
|
||||
|
||||
* {
|
||||
shade1: #BF360C;
|
||||
shade2: #D84315;
|
||||
shade3: #E64A19;
|
||||
shade4: #F4511E;
|
||||
shade5: #FF5722;
|
||||
shade6: #FF7043;
|
||||
shade7: #FF8A65;
|
||||
shade8: #FFAB91;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #353535;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Deep_purple.rasi
Normal file
36
rofi/launchers-slate/styles/Deep_purple.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Deep Purple -- */
|
||||
|
||||
* {
|
||||
shade1: #311B92;
|
||||
shade2: #4527A0;
|
||||
shade3: #512DA8;
|
||||
shade4: #5E35B1;
|
||||
shade5: #673AB7;
|
||||
shade6: #7E57C2;
|
||||
shade7: #9575CD;
|
||||
shade8: #B39DDB;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Gray.rasi
Normal file
36
rofi/launchers-slate/styles/Gray.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Gray -- */
|
||||
|
||||
* {
|
||||
shade1: #212121;
|
||||
shade2: #424242;
|
||||
shade3: #616161;
|
||||
shade4: #757575;
|
||||
shade5: #9E9E9E;
|
||||
shade6: #BDBDBD;
|
||||
shade7: #D4D4D4;
|
||||
shade8: #EEEEEE;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #303030;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Green.rasi
Normal file
36
rofi/launchers-slate/styles/Green.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Green -- */
|
||||
|
||||
* {
|
||||
shade1: #1B5E20;
|
||||
shade2: #2E7D32;
|
||||
shade3: #388E3C;
|
||||
shade4: #43A047;
|
||||
shade5: #4CAF50;
|
||||
shade6: #66BB6A;
|
||||
shade7: #81C784;
|
||||
shade8: #A5D6A7;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #202020;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Indigo.rasi
Normal file
36
rofi/launchers-slate/styles/Indigo.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Indigo -- */
|
||||
|
||||
* {
|
||||
shade1: #1A237E;
|
||||
shade2: #283593;
|
||||
shade3: #303F9F;
|
||||
shade4: #3949AB;
|
||||
shade5: #3F51B5;
|
||||
shade6: #5C6BC0;
|
||||
shade7: #7986CB;
|
||||
shade8: #9FA8DA;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Light_blue.rasi
Normal file
36
rofi/launchers-slate/styles/Light_blue.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Light Blue -- */
|
||||
|
||||
* {
|
||||
shade1: #01579B;
|
||||
shade2: #0277BD;
|
||||
shade3: #0288D1;
|
||||
shade4: #039BE5;
|
||||
shade5: #03A9F4;
|
||||
shade6: #29B6F6;
|
||||
shade7: #4FC3F7;
|
||||
shade8: #81D4FA;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #202020;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Light_green.rasi
Normal file
36
rofi/launchers-slate/styles/Light_green.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Light Green -- */
|
||||
|
||||
* {
|
||||
shade1: #33691E;
|
||||
shade2: #558B2F;
|
||||
shade3: #689F38;
|
||||
shade4: #7CB342;
|
||||
shade5: #8BC34A;
|
||||
shade6: #9CCC65;
|
||||
shade7: #AED581;
|
||||
shade8: #C5E1A5;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #353535;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Lime.rasi
Normal file
36
rofi/launchers-slate/styles/Lime.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Lime -- */
|
||||
|
||||
* {
|
||||
shade1: #827717;
|
||||
shade2: #9E9D24;
|
||||
shade3: #AFB42B;
|
||||
shade4: #C0CA33;
|
||||
shade5: #CDDC39;
|
||||
shade6: #D4E157;
|
||||
shade7: #DCE775;
|
||||
shade8: #E6EE9C;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #252525;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #404040;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Orange.rasi
Normal file
36
rofi/launchers-slate/styles/Orange.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Orange -- */
|
||||
|
||||
* {
|
||||
shade1: #E65100;
|
||||
shade2: #EF6C00;
|
||||
shade3: #F57C00;
|
||||
shade4: #FB8C00;
|
||||
shade5: #FF9800;
|
||||
shade6: #FFA726;
|
||||
shade7: #FFB74D;
|
||||
shade8: #FFCC80;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #202020;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #353535;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Pink.rasi
Normal file
36
rofi/launchers-slate/styles/Pink.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Pink -- */
|
||||
|
||||
* {
|
||||
shade1: #880E4F;
|
||||
shade2: #AD1457;
|
||||
shade3: #C2185B;
|
||||
shade4: #D81B60;
|
||||
shade5: #E91E63;
|
||||
shade6: #EC407A;
|
||||
shade7: #F06292;
|
||||
shade8: #F48FB1;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Purple.rasi
Normal file
36
rofi/launchers-slate/styles/Purple.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Purple -- */
|
||||
|
||||
* {
|
||||
shade1: #4A148C;
|
||||
shade2: #6A1B9A;
|
||||
shade3: #7B1FA2;
|
||||
shade4: #8E24AA;
|
||||
shade5: #9C27B0;
|
||||
shade6: #AB47BC;
|
||||
shade7: #BA68C8;
|
||||
shade8: #CE93D8;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Red.rasi
Normal file
36
rofi/launchers-slate/styles/Red.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Red -- */
|
||||
|
||||
* {
|
||||
shade1: #B71C1C;
|
||||
shade2: #C62828;
|
||||
shade3: #D32F2F;
|
||||
shade4: #E53935;
|
||||
shade5: #EE413D;
|
||||
shade6: #EF5350;
|
||||
shade7: #E57373;
|
||||
shade8: #EF9A9A;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Teal.rasi
Normal file
36
rofi/launchers-slate/styles/Teal.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Teal -- */
|
||||
|
||||
* {
|
||||
shade1: #004D40;
|
||||
shade2: #00695C;
|
||||
shade3: #00796B;
|
||||
shade4: #00897B;
|
||||
shade5: #009688;
|
||||
shade6: #26A69A;
|
||||
shade7: #4DB6AC;
|
||||
shade8: #80CBC4;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
36
rofi/launchers-slate/styles/Yellow.rasi
Normal file
36
rofi/launchers-slate/styles/Yellow.rasi
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* -- Yellow -- */
|
||||
|
||||
* {
|
||||
shade1: #F57F17;
|
||||
shade2: #F9A825;
|
||||
shade3: #FBC02D;
|
||||
shade4: #FDD835;
|
||||
shade5: #FFEB3B;
|
||||
shade6: #FFEE58;
|
||||
shade7: #FFF176;
|
||||
shade8: #FFF59D;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade1;
|
||||
border-alt: @shade2;
|
||||
background: @shade3;
|
||||
background-alt: @shade3;
|
||||
selected: @shade4;
|
||||
foreground: #353535;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #505050;
|
||||
urgent: #DA4453;
|
||||
}
|
12
rofi/launchers-slate/styles/colors.rasi
Normal file
12
rofi/launchers-slate/styles/colors.rasi
Normal file
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
* Change the colorscheme for every menu simply by editing this file...
|
||||
*
|
||||
* Available Color Schemes
|
||||
*
|
||||
* Amber Blue Blue_gray Black Brown Cyan Deep_orange
|
||||
* Deep_purple Gray Green Indigo Light_blue Light_green Lime
|
||||
* Orange Pink Purple Red Teal Yellow
|
||||
*
|
||||
*/
|
||||
|
||||
@import "Amber.rasi"
|
22
rofi/launchers/colors.rasi
Normal file
22
rofi/launchers/colors.rasi
Normal file
|
@ -0,0 +1,22 @@
|
|||
/*
|
||||
* 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"
|
19
rofi/launchers/emoji.sh
Executable file
19
rofi/launchers/emoji.sh
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/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
|
19
rofi/launchers/launcher.sh
Executable file
19
rofi/launchers/launcher.sh
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/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
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue