12 Commits

Author SHA1 Message Date
Aditya Shakya 7af63b1ffd Create FUNDING.yml 2022-05-28 18:35:25 +05:30
Aditya Shakya aba9eb3d1a Merge pull request #50 from GroosL/master
cmus applet
2021-09-01 01:18:35 +05:30
Aditya Shakya ec0a1678aa Merge pull request #34 from scollado/feature-brightnessctl
Add support for `brightnessctl` for blacklight control
2021-09-01 01:16:52 +05:30
Aditya Shakya 71351200da Merge pull request #59 from Bobobo-bo-Bo-bobo/shell_and_nitpicking
Don't enforce sh, nitpicking about HOME variable
2021-09-01 01:13:37 +05:30
adi1090x 2d94fb1c51 Updated configs for rofi 1.7.0 2021-09-01 01:04:03 +05:30
Aditya Shakya 179e1ad5f4 Update README.md 2021-08-31 15:00:37 +05:30
Aditya Shakya ca36b28e4e Update README.md 2021-07-12 15:59:45 +05:30
Bobobo-bo-Bo-bobo df6dde18d6 Don't enforce sh, nitpicking about HOME variable
* on some distributions sh is *not* bash, so don't enforce sh
 * it's not neccessarey to call the scripts with a shell because the
   permissions allow for direct execution
 * nitpicking: every part uses $HOME, so change ~ to $HOME for some
   calls
2021-07-10 11:37:26 +02:00
GroosL ad99168313 Update cmus.sh 2021-03-23 09:25:22 -03:00
GroosL 5269ce764e cmus applet 2021-03-23 09:17:03 -03:00
adi1090x 9c4093c665 Updated for 1.6.1-1 2021-01-05 22:10:40 +05:30
Sébastien Collado 7d8dc3698b Add support for brightnessctl in backlight.sh scripts 2020-12-18 10:43:41 +01:00
249 changed files with 1102 additions and 694 deletions
+5
View File
@@ -0,0 +1,5 @@
# These are supported funding model platforms
github: adi1090x
ko_fi: adi1090x
liberapay: adi1090x
+21 -10
View File
@@ -14,7 +14,12 @@ msg() {
}
## 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)
BNESS="$(blight -d $DEVICE get brightness)"
PERC="$(($BNESS*100/255))"
@@ -48,23 +53,29 @@ options="$ICON_UP\n$ICON_OPT\n$ICON_DOWN"
## Main
chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT%" -dmenu -selected-row 1)"
case $chosen in
$ICON_UP)
if [[ -f /usr/bin/blight ]]; then
blight -d $DEVICE set +10% && $notify "Brightness Up $ICON_UP"
"$ICON_UP")
if [[ -f /bin/brightnessctl ]]; then
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
xbacklight -inc 10 && $notify "Brightness Up $ICON_UP"
fi
;;
$ICON_DOWN)
if [[ -f /usr/bin/blight ]]; then
blight -d $DEVICE set -10% && $notify "Brightness Down $ICON_DOWN"
"$ICON_DOWN")
if [[ -f /bin/brightnessctl ]]; then
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
xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN"
fi
;;
$ICON_OPT)
if [[ -f /usr/bin/blight ]]; then
blight -d $DEVICE set 25% && $notify "Optimal Brightness $ICON_OPT"
"$ICON_OPT")
if [[ -f /bin/brightnessctl ]]; then
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
xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT"
fi
+5 -4
View File
@@ -8,9 +8,8 @@
*/
configuration {
show-icons: false;
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -52,11 +51,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 10px 10px 20px 10px;
vertical-align: 0.5;
margin: 26px 26px 26px 26px;
}
element normal.urgent,
+5 -4
View File
@@ -8,9 +8,8 @@
*/
configuration {
show-icons: false;
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -52,11 +51,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 10px 10px 20px 10px;
vertical-align: 0.5;
margin: 26px 26px 26px 26px;
}
element normal.urgent,
+5 -4
View File
@@ -8,9 +8,8 @@
*/
configuration {
show-icons: false;
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -52,11 +51,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 10px 10px 20px 10px;
vertical-align: 0.5;
margin: 26px 26px 26px 26px;
}
element normal.urgent,
+21 -10
View File
@@ -16,7 +16,12 @@ msg() {
}
## 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)
BNESS="$(blight -d $DEVICE get brightness)"
PERC="$(($BNESS*100/255))"
@@ -50,23 +55,29 @@ options="$ICON_UP\n$ICON_OPT\n$ICON_DOWN"
## Main
chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT%" -dmenu -selected-row 1)"
case $chosen in
$ICON_UP)
if [[ -f /usr/bin/blight ]]; then
blight -d $DEVICE set +10% && $notify "Brightness Up $ICON_UP"
"$ICON_UP")
if [[ -f /bin/brightnessctl ]]; then
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
xbacklight -inc 10 && $notify "Brightness Up $ICON_UP"
fi
;;
$ICON_DOWN)
if [[ -f /usr/bin/blight ]]; then
blight -d $DEVICE set -10% && $notify "Brightness Down $ICON_DOWN"
"$ICON_DOWN")
if [[ -f /bin/brightnessctl ]]; then
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
xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN"
fi
;;
$ICON_OPT)
if [[ -f /usr/bin/blight ]]; then
blight -d $DEVICE set 25% && $notify "Optimal Brightness $ICON_OPT"
"$ICON_OPT")
if [[ -f /bin/brightnessctl ]]; then
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
xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT"
fi
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 0px 0px 3px 0px;
border: 0px 0px 2px 0px;
border-radius: 25px;
border-color: @accent;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 0px 0px 3px 0px;
border: 0px 0px 2px 0px;
border-radius: 25px;
border-color: @accent;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 0px 0px 3px 0px;
border: 0px 0px 2px 0px;
border-radius: 25px;
border-color: @accent;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Iosevka Nerd Font 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 0px 0px 3px 0px;
border: 0px 0px 2px 0px;
border-radius: 25px;
border-color: @accent;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 0px 0px 3px 0px;
border: 0px 0px 2px 0px;
border-radius: 25px;
border-color: @accent;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 0px 0px 3px 0px;
border: 0px 0px 2px 0px;
border-radius: 25px;
border-color: @accent;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 0px 0px 3px 0px;
border: 0px 0px 2px 0px;
border-radius: 25px;
border-color: @accent;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 0px 0px 3px 0px;
border: 0px 0px 2px 0px;
border-radius: 25px;
border-color: @accent;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 0px 0px 3px 0px;
border: 0px 0px 2px 0px;
border-radius: 25px;
border-color: @accent;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Hurmit Nerd Font Mono 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 40px 10px 40px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 0px 0px 3px 0px;
border: 0px 0px 2px 0px;
border-radius: 25px;
border-color: @accent;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Iosevka Nerd Font 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Hurmit Nerd Font Mono 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 30px 10px 30px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Iosevka Nerd Font 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Hurmit Nerd Font Mono 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 30px 10px 30px 10px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 12";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 20";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 5px 10px 15px 10px;
vertical-align: 0.5;
margin: 19px 10px 19px 10px;
}
element normal.urgent,
+2 -2
View File
@@ -11,8 +11,8 @@ dir="$HOME/.config/rofi/applets/applets/configs/$style"
rofi_command="rofi -theme $dir/powermenu.rasi"
uptime=$(uptime -p | sed -e 's/up //g')
cpu=$(sh ~/.config/rofi/bin/usedcpu)
memory=$(sh ~/.config/rofi/bin/usedram)
cpu=$($HOME/.config/rofi/bin/usedcpu)
memory=$($HOME/.config/rofi/bin/usedram)
# Options
shutdown=""
+21 -10
View File
@@ -16,7 +16,12 @@ msg() {
}
## 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)
BNESS="$(blight -d $DEVICE get brightness)"
PERC="$(($BNESS*100/255))"
@@ -50,23 +55,29 @@ options="$ICON_UP\n$ICON_OPT\n$ICON_DOWN"
## Main
chosen="$(echo -e "$options" | $rofi_command -p "$BLIGHT% : $MSG" -dmenu -selected-row 1)"
case $chosen in
$ICON_UP)
if [[ -f /usr/bin/blight ]]; then
blight -d $DEVICE set +10% && $notify "Brightness Up $ICON_UP"
"$ICON_UP")
if [[ -f /bin/brightnessctl ]]; then
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
xbacklight -inc 10 && $notify "Brightness Up $ICON_UP"
fi
;;
$ICON_DOWN)
if [[ -f /usr/bin/blight ]]; then
blight -d $DEVICE set -10% && $notify "Brightness Down $ICON_DOWN"
"$ICON_DOWN")
if [[ -f /bin/brightnessctl ]]; then
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
xbacklight -dec 10 && $notify "Brightness Down $ICON_DOWN"
fi
;;
$ICON_OPT)
if [[ -f /usr/bin/blight ]]; then
blight -d $DEVICE set 25% && $notify "Optimal Brightness $ICON_OPT"
"$ICON_OPT")
if [[ -f /bin/brightnessctl ]]; then
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
xbacklight -set 30 && $notify "Optimal Brightness $ICON_OPT"
fi
+5 -4
View File
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Iosevka Nerd Font 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
+5 -4
View File
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
+5 -4
View File
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Hurmit Nerd Font Mono 48";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 60px 0px 60px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
+5 -4
View File
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Iosevka Nerd Font 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
+5 -4
View File
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
+5 -4
View File
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Hurmit Nerd Font Mono 48";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -88,11 +87,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
+6 -5
View File
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Iosevka Nerd Font 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
+6 -5
View File
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 4px 2px;
border: 2px 2px 3px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 4px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 4px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
+6 -5
View File
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 4px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "Hurmit Nerd Font Mono 48";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 30px 0px 30px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
@@ -8,10 +8,9 @@
*/
configuration {
show-icons: false;
font: "Comfortaa 14";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -36,7 +35,7 @@ prompt {
padding: 10px;
background-color: @background-light;
text-color: @accent;
border: 2px 2px 3px 2px;
border: 2px 2px 2px 2px;
border-radius: 0px;
border-color: @accent;
}
@@ -87,11 +86,13 @@ element {
}
element-text {
background-color: inherit;
text-color: inherit;
font: "feather 32";
expand: true;
horizontal-align: 0.5;
vertical-align: 0;
margin: 25px 0px 35px 0px;
vertical-align: 0.5;
margin: 40px 0px 40px 0px;
}
element normal.urgent,
+2 -2
View File
@@ -11,8 +11,8 @@ dir="$HOME/.config/rofi/applets/menu/configs/$style"
rofi_command="rofi -theme $dir/powermenu.rasi"
uptime=$(uptime -p | sed -e 's/up //g')
cpu=$(sh ~/.config/rofi/bin/usedcpu)
memory=$(sh ~/.config/rofi/bin/usedram)
cpu=$($HOME/.config/rofi/bin/usedcpu)
memory=$($HOME/.config/rofi/bin/usedram)
# Options
shutdown=""
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -95,11 +93,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 0px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+8 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "Applications";
drun-display-format: "{name}";
disable-history: false;
fullscreen: true;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -28,6 +26,8 @@ window {
border: 0px;
border-color: @ac;
border-radius: 0px;
width: 100%;
height: 100%;
}
prompt {
@@ -97,11 +97,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 24px;
border: 0px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "Applications";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -102,6 +100,10 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 24px;
border: 1%;
border-color: @ac;
@@ -110,6 +112,8 @@ element-icon {
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: " Applications";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -102,6 +100,10 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 1%;
border-color: @se;
@@ -111,6 +113,8 @@ element-icon {
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -95,11 +93,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 32px;
border: 0px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -96,11 +94,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 32px;
border: 0px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -95,11 +93,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 48px;
border: 0px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -95,11 +93,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 24px;
border: 0px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
+8 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: true;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -28,6 +26,8 @@ window {
border: 0px;
border-color: @ac;
border-radius: 0px;
width: 100%;
height: 100%;
}
prompt {
@@ -90,11 +90,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 80px;
border: 0px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -95,11 +93,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 24px;
border: 0px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "Applications";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -101,11 +99,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 24px;
border: 0px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "Applications";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -102,11 +100,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 24px;
border: 0px;
}
element-text {
background-color: @al;
text-color: inherit;
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -116,11 +114,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 0px;
}
element-text {
background-color: inherit;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -116,11 +114,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 0px;
}
element-text {
background-color: inherit;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -116,11 +114,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 0px;
}
element-text {
background-color: inherit;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -100,11 +98,17 @@ element {
}
element-icon {
background-color: @background;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 0px;
}
element-text {
background-color: @background;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+8 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: true;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -34,6 +32,8 @@ window {
border: 0px;
border-color: @border;
border-radius: 0px;
width: 100%;
height: 100%;
}
prompt {
@@ -96,11 +96,17 @@ element {
}
element-icon {
background-color: @background;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 80px;
border: 0px;
}
element-text {
background-color: @background;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -116,11 +114,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 0px;
}
element-text {
background-color: inherit;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -145,11 +143,17 @@ element {
}
element-icon {
background-color: @background-alt;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 128px;
border: 0px;
}
element-text {
background-color: @background-alt;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -123,11 +121,17 @@ element {
}
element-icon {
background-color: @background-alt;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 32px;
border: 0px;
}
element-text {
background-color: @background-alt;
text-color: inherit;
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -123,11 +121,17 @@ element {
}
element-icon {
background-color: @background-alt;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 0px;
}
element-text {
background-color: @background-alt;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+8 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: true;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -34,6 +32,8 @@ window {
border: 0px;
border-color: @border;
border-radius: 0px;
width: 100%;
height: 100%;
}
prompt {
@@ -96,11 +96,17 @@ element {
}
element-icon {
background-color: @background-alt;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 81px;
border: 0px;
}
element-text {
background-color: @background-alt;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -116,11 +114,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 80px;
border: 0px;
}
element-text {
background-color: inherit;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -116,11 +114,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 80px;
border: 0px;
}
element-text {
background-color: inherit;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -116,11 +114,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 80px;
border: 0px;
}
element-text {
background-color: inherit;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -116,11 +114,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 80px;
border: 0px;
}
element-text {
background-color: inherit;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+8 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: true;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -50,6 +48,8 @@ window {
border: 0px;
border-color: @border;
border-radius: 0px;
width: 100%;
height: 100%;
}
prompt {
@@ -112,11 +112,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 80px;
border: 0px;
}
element-text {
background-color: inherit;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+6 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -112,11 +110,17 @@ element {
}
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 0px;
}
element-text {
background-color: inherit;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+8 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: true;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -28,6 +26,8 @@ window {
border: 0% 0% 3% 0%;
border-color: @border;
border-radius: 0% 0% 0% 0%;
width: 100%;
height: 100%;
}
prompt {
@@ -90,11 +90,17 @@ element {
}
element-icon {
background-color: #00000000;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 0px;
}
element-text {
background-color: #00000000;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+8 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: true;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -28,6 +26,8 @@ window {
border: 0% 0% 0% 1.5%;
border-color: @border;
border-radius: 0% 0% 0% 0%;
width: 100%;
height: 100%;
}
prompt {
@@ -90,11 +90,17 @@ element {
}
element-icon {
background-color: #00000000;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 0px;
}
element-text {
background-color: #00000000;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
+8 -2
View File
@@ -14,8 +14,6 @@ configuration {
display-drun: "";
drun-display-format: "{name}";
disable-history: false;
fullscreen: true;
hide-scrollbar: true;
sidebar-mode: false;
}
@@ -28,6 +26,8 @@ window {
border: 0% 1.5% 0% 0%;
border-color: @border;
border-radius: 0% 0% 0% 0%;
width: 100%;
height: 100%;
}
prompt {
@@ -90,11 +90,17 @@ element {
}
element-icon {
background-color: #00000000;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
size: 64px;
border: 0px;
}
element-text {
background-color: #00000000;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;

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