mirror of
https://github.com/adi1090x/rofi.git
synced 2026-05-03 20:13:10 +02:00
Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7af63b1ffd | |||
| aba9eb3d1a | |||
| ec0a1678aa | |||
| 71351200da | |||
| 2d94fb1c51 | |||
| 179e1ad5f4 | |||
| ca36b28e4e | |||
| df6dde18d6 | |||
| ad99168313 | |||
| 5269ce764e | |||
| 9c4093c665 | |||
| 7d8dc3698b |
@@ -0,0 +1,5 @@
|
|||||||
|
# These are supported funding model platforms
|
||||||
|
|
||||||
|
github: adi1090x
|
||||||
|
ko_fi: adi1090x
|
||||||
|
liberapay: adi1090x
|
||||||
@@ -14,7 +14,12 @@ msg() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
## Get Brightness
|
## Get Brightness
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
|
BNESS="$(brightnessctl get)"
|
||||||
|
MAX="$(brightnessctl max)"
|
||||||
|
PERC="$((BNESS*100/MAX))"
|
||||||
|
BLIGHT=${PERC%.*}
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
DEVICE=$(ls /sys/class/backlight | head -n 1)
|
DEVICE=$(ls /sys/class/backlight | head -n 1)
|
||||||
BNESS="$(blight -d $DEVICE get brightness)"
|
BNESS="$(blight -d $DEVICE get brightness)"
|
||||||
PERC="$(($BNESS*100/255))"
|
PERC="$(($BNESS*100/255))"
|
||||||
@@ -48,23 +53,29 @@ options="$ICON_UP\n$ICON_OPT\n$ICON_DOWN"
|
|||||||
## Main
|
## Main
|
||||||
chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT%" -dmenu -selected-row 1)"
|
chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT%" -dmenu -selected-row 1)"
|
||||||
case $chosen in
|
case $chosen in
|
||||||
$ICON_UP)
|
"$ICON_UP")
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
blight -d $DEVICE set +10% && $notify "Brightness Up $ICON_UP"
|
brightnessctl -q set +10% && $notify "Brightness Up $ICON_UP"
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
|
blight -d "$DEVICE" set +10% && $notify "Brightness Up $ICON_UP"
|
||||||
elif [[ -f /usr/bin/xbacklight ]]; then
|
elif [[ -f /usr/bin/xbacklight ]]; then
|
||||||
xbacklight -inc 10 && $notify "Brightness Up $ICON_UP"
|
xbacklight -inc 10 && $notify "Brightness Up $ICON_UP"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
$ICON_DOWN)
|
"$ICON_DOWN")
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
blight -d $DEVICE set -10% && $notify "Brightness Down $ICON_DOWN"
|
brightnessctl -q set 10%- && $notify "Brightness Down $ICON_DOWN"
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
|
blight -d "$DEVICE" set -10% && $notify "Brightness Down $ICON_DOWN"
|
||||||
elif [[ -f /usr/bin/xbacklight ]]; then
|
elif [[ -f /usr/bin/xbacklight ]]; then
|
||||||
xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN"
|
xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
$ICON_OPT)
|
"$ICON_OPT")
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
blight -d $DEVICE set 25% && $notify "Optimal Brightness $ICON_OPT"
|
brightnessctl -q set 25% && $notify "Optimal Brightness $ICON_OPT"
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
|
blight -d "$DEVICE" set 25% && $notify "Optimal Brightness $ICON_OPT"
|
||||||
elif [[ -f /usr/bin/xbacklight ]]; then
|
elif [[ -f /usr/bin/xbacklight ]]; then
|
||||||
xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT"
|
xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT"
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -8,9 +8,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -52,11 +51,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 10px 10px 20px 10px;
|
margin: 26px 26px 26px 26px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,9 +8,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -52,11 +51,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 10px 10px 20px 10px;
|
margin: 26px 26px 26px 26px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,9 +8,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -52,11 +51,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 10px 10px 20px 10px;
|
margin: 26px 26px 26px 26px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -16,7 +16,12 @@ msg() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
## Get Brightness
|
## Get Brightness
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
|
BNESS="$(brightnessctl get)"
|
||||||
|
MAX="$(brightnessctl max)"
|
||||||
|
PERC="$((BNESS*100/MAX))"
|
||||||
|
BLIGHT=${PERC%.*}
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
DEVICE=$(ls /sys/class/backlight | head -n 1)
|
DEVICE=$(ls /sys/class/backlight | head -n 1)
|
||||||
BNESS="$(blight -d $DEVICE get brightness)"
|
BNESS="$(blight -d $DEVICE get brightness)"
|
||||||
PERC="$(($BNESS*100/255))"
|
PERC="$(($BNESS*100/255))"
|
||||||
@@ -50,23 +55,29 @@ options="$ICON_UP\n$ICON_OPT\n$ICON_DOWN"
|
|||||||
## Main
|
## Main
|
||||||
chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT%" -dmenu -selected-row 1)"
|
chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT%" -dmenu -selected-row 1)"
|
||||||
case $chosen in
|
case $chosen in
|
||||||
$ICON_UP)
|
"$ICON_UP")
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
blight -d $DEVICE set +10% && $notify "Brightness Up $ICON_UP"
|
brightnessctl -q set +10% && $notify "Brightness Up $ICON_UP"
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
|
blight -d "$DEVICE" set +10% && $notify "Brightness Up $ICON_UP"
|
||||||
elif [[ -f /usr/bin/xbacklight ]]; then
|
elif [[ -f /usr/bin/xbacklight ]]; then
|
||||||
xbacklight -inc 10 && $notify "Brightness Up $ICON_UP"
|
xbacklight -inc 10 && $notify "Brightness Up $ICON_UP"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
$ICON_DOWN)
|
"$ICON_DOWN")
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
blight -d $DEVICE set -10% && $notify "Brightness Down $ICON_DOWN"
|
brightnessctl -q set 10%- && $notify "Brightness Down $ICON_DOWN"
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
|
blight -d "$DEVICE" set -10% && $notify "Brightness Down $ICON_DOWN"
|
||||||
elif [[ -f /usr/bin/xbacklight ]]; then
|
elif [[ -f /usr/bin/xbacklight ]]; then
|
||||||
xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN"
|
xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
$ICON_OPT)
|
"$ICON_OPT")
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
blight -d $DEVICE set 25% && $notify "Optimal Brightness $ICON_OPT"
|
brightnessctl -q set 25% && $notify "Optimal Brightness $ICON_OPT"
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
|
blight -d "$DEVICE" set 25% && $notify "Optimal Brightness $ICON_OPT"
|
||||||
elif [[ -f /usr/bin/xbacklight ]]; then
|
elif [[ -f /usr/bin/xbacklight ]]; then
|
||||||
xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT"
|
xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT"
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 0px 0px 3px 0px;
|
border: 0px 0px 2px 0px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 0px 0px 3px 0px;
|
border: 0px 0px 2px 0px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 0px 0px 3px 0px;
|
border: 0px 0px 2px 0px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Iosevka Nerd Font 20";
|
font: "Iosevka Nerd Font 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 0px 0px 3px 0px;
|
border: 0px 0px 2px 0px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 0px 0px 3px 0px;
|
border: 0px 0px 2px 0px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 0px 0px 3px 0px;
|
border: 0px 0px 2px 0px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 0px 0px 3px 0px;
|
border: 0px 0px 2px 0px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 0px 0px 3px 0px;
|
border: 0px 0px 2px 0px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 0px 0px 3px 0px;
|
border: 0px 0px 2px 0px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Hurmit Nerd Font Mono 32";
|
font: "Hurmit Nerd Font Mono 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 40px 10px 40px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 0px 0px 3px 0px;
|
border: 0px 0px 2px 0px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Iosevka Nerd Font 20";
|
font: "Iosevka Nerd Font 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Hurmit Nerd Font Mono 32";
|
font: "Hurmit Nerd Font Mono 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 30px 10px 30px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Iosevka Nerd Font 20";
|
font: "Iosevka Nerd Font 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Hurmit Nerd Font Mono 32";
|
font: "Hurmit Nerd Font Mono 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 30px 10px 30px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 12";
|
font: "Comfortaa 12";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 20";
|
font: "feather 20";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 19px 10px 19px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@ dir="$HOME/.config/rofi/applets/applets/configs/$style"
|
|||||||
rofi_command="rofi -theme $dir/powermenu.rasi"
|
rofi_command="rofi -theme $dir/powermenu.rasi"
|
||||||
|
|
||||||
uptime=$(uptime -p | sed -e 's/up //g')
|
uptime=$(uptime -p | sed -e 's/up //g')
|
||||||
cpu=$(sh ~/.config/rofi/bin/usedcpu)
|
cpu=$($HOME/.config/rofi/bin/usedcpu)
|
||||||
memory=$(sh ~/.config/rofi/bin/usedram)
|
memory=$($HOME/.config/rofi/bin/usedram)
|
||||||
|
|
||||||
# Options
|
# Options
|
||||||
shutdown=""
|
shutdown=""
|
||||||
|
|||||||
@@ -16,7 +16,12 @@ msg() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
## Get Brightness
|
## Get Brightness
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
|
BNESS="$(brightnessctl get)"
|
||||||
|
MAX="$(brightnessctl max)"
|
||||||
|
PERC="$((BNESS*100/MAX))"
|
||||||
|
BLIGHT=${PERC%.*}
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
DEVICE=$(ls /sys/class/backlight | head -n 1)
|
DEVICE=$(ls /sys/class/backlight | head -n 1)
|
||||||
BNESS="$(blight -d $DEVICE get brightness)"
|
BNESS="$(blight -d $DEVICE get brightness)"
|
||||||
PERC="$(($BNESS*100/255))"
|
PERC="$(($BNESS*100/255))"
|
||||||
@@ -50,23 +55,29 @@ options="$ICON_UP\n$ICON_OPT\n$ICON_DOWN"
|
|||||||
## Main
|
## Main
|
||||||
chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT% : $MSG" -dmenu -selected-row 1)"
|
chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT% : $MSG" -dmenu -selected-row 1)"
|
||||||
case $chosen in
|
case $chosen in
|
||||||
$ICON_UP)
|
"$ICON_UP")
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
blight -d $DEVICE set +10% && $notify "Brightness Up $ICON_UP"
|
brightnessctl -q set +10% && $notify "Brightness Up $ICON_UP"
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
|
blight -d "$DEVICE" set +10% && $notify "Brightness Up $ICON_UP"
|
||||||
elif [[ -f /usr/bin/xbacklight ]]; then
|
elif [[ -f /usr/bin/xbacklight ]]; then
|
||||||
xbacklight -inc 10 && $notify "Brightness Up $ICON_UP"
|
xbacklight -inc 10 && $notify "Brightness Up $ICON_UP"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
$ICON_DOWN)
|
"$ICON_DOWN")
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
blight -d $DEVICE set -10% && $notify "Brightness Down $ICON_DOWN"
|
brightnessctl -q set 10%- && $notify "Brightness Down $ICON_DOWN"
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
|
blight -d "$DEVICE" set -10% && $notify "Brightness Down $ICON_DOWN"
|
||||||
elif [[ -f /usr/bin/xbacklight ]]; then
|
elif [[ -f /usr/bin/xbacklight ]]; then
|
||||||
xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN"
|
xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
$ICON_OPT)
|
"$ICON_OPT")
|
||||||
if [[ -f /usr/bin/blight ]]; then
|
if [[ -f /bin/brightnessctl ]]; then
|
||||||
blight -d $DEVICE set 25% && $notify "Optimal Brightness $ICON_OPT"
|
brightnessctl -q set 25% && $notify "Optimal Brightness $ICON_OPT"
|
||||||
|
elif [[ -f /usr/bin/blight ]]; then
|
||||||
|
blight -d "$DEVICE" set 25% && $notify "Optimal Brightness $ICON_OPT"
|
||||||
elif [[ -f /usr/bin/xbacklight ]]; then
|
elif [[ -f /usr/bin/xbacklight ]]; then
|
||||||
xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT"
|
xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT"
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Iosevka Nerd Font 32";
|
font: "Iosevka Nerd Font 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Hurmit Nerd Font Mono 48";
|
font: "Hurmit Nerd Font Mono 48";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 60px 0px 60px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Iosevka Nerd Font 32";
|
font: "Iosevka Nerd Font 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Hurmit Nerd Font Mono 48";
|
font: "Hurmit Nerd Font Mono 48";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,11 +87,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Iosevka Nerd Font 32";
|
font: "Iosevka Nerd Font 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 4px 2px;
|
border: 2px 2px 3px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 4px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 4px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 4px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "Hurmit Nerd Font Mono 48";
|
font: "Hurmit Nerd Font Mono 48";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 30px 0px 30px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -8,10 +8,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
|
show-icons: false;
|
||||||
font: "Comfortaa 14";
|
font: "Comfortaa 14";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,7 +35,7 @@ prompt {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: @background-light;
|
background-color: @background-light;
|
||||||
text-color: @accent;
|
text-color: @accent;
|
||||||
border: 2px 2px 3px 2px;
|
border: 2px 2px 2px 2px;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-color: @accent;
|
border-color: @accent;
|
||||||
}
|
}
|
||||||
@@ -87,11 +86,13 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
font: "feather 32";
|
font: "feather 32";
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0;
|
vertical-align: 0.5;
|
||||||
margin: 25px 0px 35px 0px;
|
margin: 40px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element normal.urgent,
|
element normal.urgent,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@ dir="$HOME/.config/rofi/applets/menu/configs/$style"
|
|||||||
rofi_command="rofi -theme $dir/powermenu.rasi"
|
rofi_command="rofi -theme $dir/powermenu.rasi"
|
||||||
|
|
||||||
uptime=$(uptime -p | sed -e 's/up //g')
|
uptime=$(uptime -p | sed -e 's/up //g')
|
||||||
cpu=$(sh ~/.config/rofi/bin/usedcpu)
|
cpu=$($HOME/.config/rofi/bin/usedcpu)
|
||||||
memory=$(sh ~/.config/rofi/bin/usedram)
|
memory=$($HOME/.config/rofi/bin/usedram)
|
||||||
|
|
||||||
# Options
|
# Options
|
||||||
shutdown=""
|
shutdown=""
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,11 +93,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "Applications";
|
display-drun: "Applications";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: true;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -28,6 +26,8 @@ window {
|
|||||||
border: 0px;
|
border: 0px;
|
||||||
border-color: @ac;
|
border-color: @ac;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
prompt {
|
prompt {
|
||||||
@@ -97,11 +97,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 24px;
|
size: 24px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0;
|
horizontal-align: 0;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "Applications";
|
display-drun: "Applications";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -102,6 +100,10 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 24px;
|
size: 24px;
|
||||||
border: 1%;
|
border: 1%;
|
||||||
border-color: @ac;
|
border-color: @ac;
|
||||||
@@ -110,6 +112,8 @@ element-icon {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0;
|
horizontal-align: 0;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: " Applications";
|
display-drun: " Applications";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -102,6 +100,10 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 1%;
|
border: 1%;
|
||||||
border-color: @se;
|
border-color: @se;
|
||||||
@@ -111,6 +113,8 @@ element-icon {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,11 +93,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 32px;
|
size: 32px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0;
|
horizontal-align: 0;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -96,11 +94,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 32px;
|
size: 32px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0;
|
horizontal-align: 0;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,11 +93,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 48px;
|
size: 48px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,11 +93,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 24px;
|
size: 24px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0;
|
horizontal-align: 0;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: true;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -28,6 +26,8 @@ window {
|
|||||||
border: 0px;
|
border: 0px;
|
||||||
border-color: @ac;
|
border-color: @ac;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
prompt {
|
prompt {
|
||||||
@@ -90,11 +90,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 80px;
|
size: 80px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,11 +93,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 24px;
|
size: 24px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0;
|
horizontal-align: 0;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "Applications";
|
display-drun: "Applications";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -101,11 +99,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 24px;
|
size: 24px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0;
|
horizontal-align: 0;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "Applications";
|
display-drun: "Applications";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -102,11 +100,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 24px;
|
size: 24px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @al;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0;
|
horizontal-align: 0;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -116,11 +114,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -116,11 +114,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -116,11 +114,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -100,11 +98,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: @background;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @background;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: true;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -34,6 +32,8 @@ window {
|
|||||||
border: 0px;
|
border: 0px;
|
||||||
border-color: @border;
|
border-color: @border;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
prompt {
|
prompt {
|
||||||
@@ -96,11 +96,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: @background;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 80px;
|
size: 80px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @background;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -116,11 +114,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -145,11 +143,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: @background-alt;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 128px;
|
size: 128px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @background-alt;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -123,11 +121,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: @background-alt;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 32px;
|
size: 32px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @background-alt;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0;
|
horizontal-align: 0;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -123,11 +121,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: @background-alt;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @background-alt;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: true;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -34,6 +32,8 @@ window {
|
|||||||
border: 0px;
|
border: 0px;
|
||||||
border-color: @border;
|
border-color: @border;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
prompt {
|
prompt {
|
||||||
@@ -96,11 +96,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: @background-alt;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 81px;
|
size: 81px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: @background-alt;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -116,11 +114,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 80px;
|
size: 80px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -116,11 +114,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 80px;
|
size: 80px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -116,11 +114,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 80px;
|
size: 80px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -116,11 +114,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 80px;
|
size: 80px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: true;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -50,6 +48,8 @@ window {
|
|||||||
border: 0px;
|
border: 0px;
|
||||||
border-color: @border;
|
border-color: @border;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
prompt {
|
prompt {
|
||||||
@@ -112,11 +112,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 80px;
|
size: 80px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: false;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -112,11 +110,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: true;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -28,6 +26,8 @@ window {
|
|||||||
border: 0% 0% 3% 0%;
|
border: 0% 0% 3% 0%;
|
||||||
border-color: @border;
|
border-color: @border;
|
||||||
border-radius: 0% 0% 0% 0%;
|
border-radius: 0% 0% 0% 0%;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
prompt {
|
prompt {
|
||||||
@@ -90,11 +90,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: #00000000;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: #00000000;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: true;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -28,6 +26,8 @@ window {
|
|||||||
border: 0% 0% 0% 1.5%;
|
border: 0% 0% 0% 1.5%;
|
||||||
border-color: @border;
|
border-color: @border;
|
||||||
border-radius: 0% 0% 0% 0%;
|
border-radius: 0% 0% 0% 0%;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
prompt {
|
prompt {
|
||||||
@@ -90,11 +90,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: #00000000;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: #00000000;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ configuration {
|
|||||||
display-drun: "";
|
display-drun: "";
|
||||||
drun-display-format: "{name}";
|
drun-display-format: "{name}";
|
||||||
disable-history: false;
|
disable-history: false;
|
||||||
fullscreen: true;
|
|
||||||
hide-scrollbar: true;
|
|
||||||
sidebar-mode: false;
|
sidebar-mode: false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -28,6 +26,8 @@ window {
|
|||||||
border: 0% 1.5% 0% 0%;
|
border: 0% 1.5% 0% 0%;
|
||||||
border-color: @border;
|
border-color: @border;
|
||||||
border-radius: 0% 0% 0% 0%;
|
border-radius: 0% 0% 0% 0%;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
prompt {
|
prompt {
|
||||||
@@ -90,11 +90,17 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
background-color: #00000000;
|
||||||
|
text-color: inherit;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
size: 64px;
|
size: 64px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-text {
|
element-text {
|
||||||
|
background-color: #00000000;
|
||||||
|
text-color: inherit;
|
||||||
expand: true;
|
expand: true;
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
vertical-align: 0.5;
|
vertical-align: 0.5;
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user