aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaKooLit <ejhay.games@gmail.com>2024-09-13 11:03:20 +0900
committerJaKooLit <ejhay.games@gmail.com>2024-09-13 11:03:20 +0900
commit6c99347a62111f6ca23bf16c841d2cf1673b69b6 (patch)
treec5121c99ee9a528c3abd48f5480850d9f0739cfb
parent6c526a514f2ad8502b1285fcb3c43f8d973fb32d (diff)
custom idle inhibitor on waybar which kills hypridle when toggled
-rwxr-xr-xconfig/hypr/scripts/Hypridle.sh23
-rw-r--r--config/waybar/Modules16
-rw-r--r--config/waybar/ModulesWorkspaces1
-rw-r--r--config/waybar/configs/[BOT & Left] SouthWest2
-rw-r--r--config/waybar/configs/[BOT & Right] SouthEast2
-rw-r--r--config/waybar/configs/[BOT] Default2
-rw-r--r--config/waybar/configs/[BOT] Simple2
-rw-r--r--config/waybar/configs/[BOT] Sleek2
-rw-r--r--config/waybar/configs/[TOP & BOT] SummitSplit2
-rw-r--r--config/waybar/configs/[TOP & Left] NorthWest2
-rw-r--r--config/waybar/configs/[TOP & Right] NorthEast2
-rw-r--r--config/waybar/configs/[TOP] Default2
-rw-r--r--config/waybar/configs/[TOP] Default_v22
-rw-r--r--config/waybar/configs/[TOP] Default_v32
-rw-r--r--config/waybar/configs/[TOP] Everforest2
-rw-r--r--config/waybar/configs/[TOP] Minimal - Long2
-rw-r--r--config/waybar/configs/[TOP] Simple2
-rw-r--r--config/waybar/configs/[TOP] Sleek2
-rw-r--r--config/waybar/style/[Black & White] Monochrome.css5
-rw-r--r--config/waybar/style/[Catppuccin] Latte.css7
-rw-r--r--config/waybar/style/[Catppuccin] Mocha.css8
-rw-r--r--config/waybar/style/[Colored] Chroma Glow.css12
-rw-r--r--config/waybar/style/[Colored] Translucent.css8
-rw-r--r--config/waybar/style/[Colorful] Aurora Blossom.css5
-rw-r--r--config/waybar/style/[Colorful] Aurora.css5
-rw-r--r--config/waybar/style/[Colorful] Rainbow Spectrum.css8
-rw-r--r--config/waybar/style/[Dark] Golden Noir.css7
-rw-r--r--config/waybar/style/[Dark] Half-Moon.css7
-rw-r--r--config/waybar/style/[Dark] Latte-Wallust combined.css11
-rw-r--r--config/waybar/style/[Dark] Purpl.css7
-rw-r--r--config/waybar/style/[Dark] Wallust Obsidian Edge.css7
-rw-r--r--config/waybar/style/[Extra] Crimson.css7
-rw-r--r--config/waybar/style/[Extra] EverForest.css4
-rw-r--r--config/waybar/style/[Extra] Mauve.css7
-rw-r--r--config/waybar/style/[Extra] Rose Pine.css7
-rw-r--r--config/waybar/style/[Extra] Simple Pink.css7
-rw-r--r--config/waybar/style/[Light] Monochrome Contrast.css5
-rw-r--r--config/waybar/style/[Light] Obsidian Glow.css7
-rw-r--r--config/waybar/style/[Retro] Simple Style.css7
-rw-r--r--config/waybar/style/[Transparent] Crystal Clear.css8
-rw-r--r--config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css8
-rw-r--r--config/waybar/style/[Wallust Bordered] Chroma Simple.css6
-rw-r--r--config/waybar/style/[Wallust Transparent] Crystal Clear.css7
-rw-r--r--config/waybar/style/[Wallust] Box type.css7
-rw-r--r--config/waybar/style/[Wallust] Chroma Edge.css6
-rw-r--r--config/waybar/style/[Wallust] Chroma Fusion.css8
-rw-r--r--config/waybar/style/[Wallust] Chroma Tally.css8
-rw-r--r--config/waybar/style/[Wallust] Colored.css7
-rw-r--r--config/waybar/style/[Wallust] Simple.css5
-rwxr-xr-xcopy.sh4
50 files changed, 246 insertions, 46 deletions
diff --git a/config/hypr/scripts/Hypridle.sh b/config/hypr/scripts/Hypridle.sh
new file mode 100755
index 00000000..56176716
--- /dev/null
+++ b/config/hypr/scripts/Hypridle.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
+# This is for custom version of waybar idle_inhibitor which activates / deactivates hypridle instead
+
+PROCESS="hypridle"
+
+if [[ "$1" == "status" ]]; then
+ sleep 1
+ if pgrep -x "$PROCESS" >/dev/null; then
+ echo '{"text": "RUNNING", "class": "active", "tooltip": "idle_inhibitor NOT ACTIVE\nLeft Click: Activate\nRight Click: Lock Screen"}'
+ else
+ echo '{"text": "NOT RUNNING", "class": "notactive", "tooltip": "idle_inhibitor is ACTIVE\nLeft Click: Deactivate\nRight Click: Lock Screen"}'
+ fi
+elif [[ "$1" == "toggle" ]]; then
+ if pgrep -x "$PROCESS" >/dev/null; then
+ pkill "$PROCESS"
+ else
+ "$PROCESS"
+ fi
+else
+ echo "Usage: $0 {status|toggle}"
+ exit 1
+fi
diff --git a/config/waybar/Modules b/config/waybar/Modules
index 0b8b6da2..856f9dc2 100644
--- a/config/waybar/Modules
+++ b/config/waybar/Modules
@@ -2,7 +2,6 @@
/* Waybar Modules */
{
-
/* NOTE: hyprland-workspaces on a separate file */
// Weather and Temperature Modules as this is most like to change always.
// Result is of course easier to edit
@@ -21,7 +20,7 @@
"interval": 10,
"tooltip": true,
"hwmon-path": [
- "/sys/class/hwmon/hwmon1/temp1_input",
+ "/sys/class/hwmon/hwmon1/temp2_input",
"/sys/class/thermal/thermal_zone0/temp"
],
//"thermal-zone": 0,
@@ -37,7 +36,7 @@
"interval": 10,
"tooltip": true,
"hwmon-path": [
- "/sys/class/hwmon/hwmon1/temp1_input",
+ "/sys/class/hwmon/hwmon1/temp2_input",
"/sys/class/thermal/thermal_zone0/temp"
],
//"thermal-zone": 0,
@@ -469,6 +468,17 @@
"tooltip": true,
"tooltip-format": "ó±§£ Quick Tips",
},
+// Hypridle inhibitor
+"custom/hypridle": {
+ "format": " ó°·› ",
+ "return-type": "json",
+ "escape": true,
+ "exec-on-event": true,
+ "interval": 60,
+ "exec": "$HOME/.config/hypr/scripts/Hypridle.sh status",
+ "on-click": "$HOME/.config/hypr/scripts/Hypridle.sh toggle",
+ "on-click-right": "hyprlock"
+ },
"custom/keyboard": {
"exec": "cat ~/.cache/kb_layout",
"interval": 1,
diff --git a/config/waybar/ModulesWorkspaces b/config/waybar/ModulesWorkspaces
index e7fc51c9..03ba1bd1 100644
--- a/config/waybar/ModulesWorkspaces
+++ b/config/waybar/ModulesWorkspaces
@@ -2,7 +2,6 @@
/* Waybar Workspaces modules */
/* Generally, this is a potential expanding of choices for hyprland/workspace */
-
{
// HYPRLAND WORKSPACES. CHOOSE as desired and place on waybar configs
diff --git a/config/waybar/configs/[BOT & Left] SouthWest b/config/waybar/configs/[BOT & Left] SouthWest
index 87be19f0..8733cf40 100644
--- a/config/waybar/configs/[BOT & Left] SouthWest
+++ b/config/waybar/configs/[BOT & Left] SouthWest
@@ -65,7 +65,7 @@
"modules-left": [
"custom/lock",
- "idle_inhibitor",
+ "custom/hypridle",
],
"modules-center": [
diff --git a/config/waybar/configs/[BOT & Right] SouthEast b/config/waybar/configs/[BOT & Right] SouthEast
index db367b9c..92247726 100644
--- a/config/waybar/configs/[BOT & Right] SouthEast
+++ b/config/waybar/configs/[BOT & Right] SouthEast
@@ -65,7 +65,7 @@
"modules-left": [
"custom/lock",
- "idle_inhibitor",
+ "custom/hypridle",
],
"modules-center": [
diff --git a/config/waybar/configs/[BOT] Default b/config/waybar/configs/[BOT] Default
index d2638258..a6bf5e7b 100644
--- a/config/waybar/configs/[BOT] Default
+++ b/config/waybar/configs/[BOT] Default
@@ -35,7 +35,7 @@
"modules-center": [
"custom/menu",
"custom/separator#dot-line",
- "idle_inhibitor",
+ "custom/hypridle",
"custom/separator#dot-line",
"clock",
"custom/separator#dot-line",
diff --git a/config/waybar/configs/[BOT] Simple b/config/waybar/configs/[BOT] Simple
index ef5c30eb..76d20698 100644
--- a/config/waybar/configs/[BOT] Simple
+++ b/config/waybar/configs/[BOT] Simple
@@ -17,7 +17,7 @@
"margin-top": 2,
"modules-left": [
- "idle_inhibitor",
+ "custom/hypridle",
"group/mobo_drawer",
"hyprland/workspaces#rw",
"tray",
diff --git a/config/waybar/configs/[BOT] Sleek b/config/waybar/configs/[BOT] Sleek
index c79fd71f..277551d0 100644
--- a/config/waybar/configs/[BOT] Sleek
+++ b/config/waybar/configs/[BOT] Sleek
@@ -24,7 +24,7 @@
],
"modules-center": [
- "idle_inhibitor",
+ "custom/hypridle",
"custom/separator#blank",
"clock",
"custom/separator#blank",
diff --git a/config/waybar/configs/[TOP & BOT] SummitSplit b/config/waybar/configs/[TOP & BOT] SummitSplit
index 3d419c22..0504fdee 100644
--- a/config/waybar/configs/[TOP & BOT] SummitSplit
+++ b/config/waybar/configs/[TOP & BOT] SummitSplit
@@ -27,7 +27,7 @@
],
"modules-center": [
- "idle_inhibitor",
+ "custom/hypridle",
"clock",
"custom/light_dark",
],
diff --git a/config/waybar/configs/[TOP & Left] NorthWest b/config/waybar/configs/[TOP & Left] NorthWest
index dd03fd92..3652d149 100644
--- a/config/waybar/configs/[TOP & Left] NorthWest
+++ b/config/waybar/configs/[TOP & Left] NorthWest
@@ -61,7 +61,7 @@
"modules-left": [
"custom/lock",
- "idle_inhibitor",
+ "custom/hypridle",
],
"modules-center": [
diff --git a/config/waybar/configs/[TOP & Right] NorthEast b/config/waybar/configs/[TOP & Right] NorthEast
index 442c7886..6347945d 100644
--- a/config/waybar/configs/[TOP & Right] NorthEast
+++ b/config/waybar/configs/[TOP & Right] NorthEast
@@ -62,7 +62,7 @@
"modules-left": [
"custom/lock",
- "idle_inhibitor",
+ "custom/hypridle",
],
"modules-center": [
diff --git a/config/waybar/configs/[TOP] Default b/config/waybar/configs/[TOP] Default
index 747fd9fe..db4a953f 100644
--- a/config/waybar/configs/[TOP] Default
+++ b/config/waybar/configs/[TOP] Default
@@ -35,7 +35,7 @@
"modules-center": [
"custom/menu",
"custom/separator#dot-line",
- "idle_inhibitor",
+ "custom/hypridle",
"custom/separator#dot-line",
"clock",
"custom/separator#dot-line",
diff --git a/config/waybar/configs/[TOP] Default_v2 b/config/waybar/configs/[TOP] Default_v2
index 8a0b7a29..ff2a7077 100644
--- a/config/waybar/configs/[TOP] Default_v2
+++ b/config/waybar/configs/[TOP] Default_v2
@@ -35,7 +35,7 @@
"custom/separator#line",
"hyprland/workspaces#roman",
"custom/separator#dot-line",
- "idle_inhibitor",
+ "custom/hypridle",
"custom/hint",
],
diff --git a/config/waybar/configs/[TOP] Default_v3 b/config/waybar/configs/[TOP] Default_v3
index 0575aba1..4a4a00f9 100644
--- a/config/waybar/configs/[TOP] Default_v3
+++ b/config/waybar/configs/[TOP] Default_v3
@@ -37,7 +37,7 @@
"custom/separator#line",
"hyprland/workspaces#kanji",
"custom/separator#dot-line",
- "idle_inhibitor",
+ "custom/hypridle",
"custom/hint",
],
diff --git a/config/waybar/configs/[TOP] Everforest b/config/waybar/configs/[TOP] Everforest
index 67cf09c4..67b09eff 100644
--- a/config/waybar/configs/[TOP] Everforest
+++ b/config/waybar/configs/[TOP] Everforest
@@ -30,7 +30,7 @@
],
"modules-center": [
"clock#forest",
- "idle_inhibitor",
+ "custom/hypridle",
],
"modules-right": [
"cpu#forest",
diff --git a/config/waybar/configs/[TOP] Minimal - Long b/config/waybar/configs/[TOP] Minimal - Long
index e5ff1e28..8ea6e306 100644
--- a/config/waybar/configs/[TOP] Minimal - Long
+++ b/config/waybar/configs/[TOP] Minimal - Long
@@ -30,7 +30,7 @@
],
"modules-center": [
"clock",
- "idle_inhibitor",
+ "custom/hypridle",
],
"modules-right": [
"group/mobo_drawer",
diff --git a/config/waybar/configs/[TOP] Simple b/config/waybar/configs/[TOP] Simple
index fd51a06f..a0a1d28d 100644
--- a/config/waybar/configs/[TOP] Simple
+++ b/config/waybar/configs/[TOP] Simple
@@ -17,7 +17,7 @@
"margin-top": 2,
"modules-left": [
- "idle_inhibitor",
+ "custom/hypridle",
"group/mobo_drawer",
"hyprland/workspaces#rw",
"tray",
diff --git a/config/waybar/configs/[TOP] Sleek b/config/waybar/configs/[TOP] Sleek
index 12227bf5..edcf6f49 100644
--- a/config/waybar/configs/[TOP] Sleek
+++ b/config/waybar/configs/[TOP] Sleek
@@ -23,7 +23,7 @@
],
"modules-center": [
- "idle_inhibitor",
+ "custom/hypridle",
"custom/separator#blank",
"clock#3",
"custom/separator#blank",
diff --git a/config/waybar/style/[Black & White] Monochrome.css b/config/waybar/style/[Black & White] Monochrome.css
index 13f6cdf4..a572ab71 100644
--- a/config/waybar/style/[Black & White] Monochrome.css
+++ b/config/waybar/style/[Black & White] Monochrome.css
@@ -129,6 +129,7 @@ tooltip label{
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -154,9 +155,11 @@ tooltip label{
padding-left: 6px;
}
/*-----Indicators----*/
+#custom-hypridle.notactive,
#idle_inhibitor.activated {
- color: #2dcc36;
+ color: #ffd700;
}
+
#pulseaudio.muted {
color: #cc3436;
}
diff --git a/config/waybar/style/[Catppuccin] Latte.css b/config/waybar/style/[Catppuccin] Latte.css
index 92eac7ff..0fc4272e 100644
--- a/config/waybar/style/[Catppuccin] Latte.css
+++ b/config/waybar/style/[Catppuccin] Latte.css
@@ -100,6 +100,7 @@ window#waybar.empty #window {
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -125,8 +126,10 @@ window#waybar.empty #window {
padding-left: 6px;
}
-#idle_inhibitor {
- color: @blue;
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
}
#backlight {
diff --git a/config/waybar/style/[Catppuccin] Mocha.css b/config/waybar/style/[Catppuccin] Mocha.css
index 98a4240c..17c89f60 100644
--- a/config/waybar/style/[Catppuccin] Mocha.css
+++ b/config/waybar/style/[Catppuccin] Mocha.css
@@ -120,6 +120,7 @@ window#waybar.empty #window {
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -144,9 +145,10 @@ window#waybar.empty #window {
padding-right: 6px;
padding-left: 6px;
}
-
-#idle_inhibitor {
- color: @blue;
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
}
#bluetooth,
diff --git a/config/waybar/style/[Colored] Chroma Glow.css b/config/waybar/style/[Colored] Chroma Glow.css
index 05a3013e..8840bfeb 100644
--- a/config/waybar/style/[Colored] Chroma Glow.css
+++ b/config/waybar/style/[Colored] Chroma Glow.css
@@ -116,6 +116,7 @@ tooltip label{
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -264,15 +265,10 @@ label:focus {
/* background-color: #505050; */
}
-#idle_inhibitor {
- color: #ADD8E6;
- /*background-color: #2d3436;*/
-}
-
+/*-----Indicators----*/
+#custom-hypridle.notactive,
#idle_inhibitor.activated {
- /*background-color: #ecf0f1;*/
- color: #2dcc36;
- /*color: #2d3436;*/
+ color: #ffd700;
}
#mpd {
diff --git a/config/waybar/style/[Colored] Translucent.css b/config/waybar/style/[Colored] Translucent.css
index 8d6aab16..bd5b5c39 100644
--- a/config/waybar/style/[Colored] Translucent.css
+++ b/config/waybar/style/[Colored] Translucent.css
@@ -125,6 +125,7 @@ tooltip {
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -282,15 +283,16 @@ label:focus {
/* background-color: #505050; */
}
+#custom-hypridle,
#idle_inhibitor {
color: #f9e2af;
/*background-color: #2d3436;*/
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
#idle_inhibitor.activated {
- /*background-color: #ecf0f1;*/
- color: #2dcc36;
- /*color: #2d3436;*/
+ color: #ffd700;
}
#mpd {
diff --git a/config/waybar/style/[Colorful] Aurora Blossom.css b/config/waybar/style/[Colorful] Aurora Blossom.css
index e29ab9a7..e39392a5 100644
--- a/config/waybar/style/[Colorful] Aurora Blossom.css
+++ b/config/waybar/style/[Colorful] Aurora Blossom.css
@@ -118,6 +118,7 @@ tooltip label{
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -146,9 +147,11 @@ tooltip label{
padding: 1px 3px;
}
/*-----Indicators----*/
+#custom-hypridle.notactive,
#idle_inhibitor.activated {
- color: #2dcc36;
+ color: #ffd700;
}
+
#pulseaudio.muted {
color: #cc3436;
}
diff --git a/config/waybar/style/[Colorful] Aurora.css b/config/waybar/style/[Colorful] Aurora.css
index 55dffc62..f4fdb6f4 100644
--- a/config/waybar/style/[Colorful] Aurora.css
+++ b/config/waybar/style/[Colorful] Aurora.css
@@ -107,6 +107,7 @@ tooltip label{
#custom-cava_mviz,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -153,9 +154,11 @@ tooltip label{
padding-right: 12px;
}
/*-----Indicators----*/
+#custom-hypridle.notactive,
#idle_inhibitor.activated {
- color: #2dcc36;
+ color: #ffd700;
}
+
#pulseaudio.muted {
color: #cc3436;
}
diff --git a/config/waybar/style/[Colorful] Rainbow Spectrum.css b/config/waybar/style/[Colorful] Rainbow Spectrum.css
index 03096358..b9b532c0 100644
--- a/config/waybar/style/[Colorful] Rainbow Spectrum.css
+++ b/config/waybar/style/[Colorful] Rainbow Spectrum.css
@@ -100,6 +100,7 @@ tooltip label{
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -236,10 +237,17 @@ tooltip label{
#custom-power_vertical,
#custom-light_dark,
+#custom-hypridle,
#idle_inhibitor {
background-color: #86b4fa;
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#bluetooth {
background-color: #89dceb;
}
diff --git a/config/waybar/style/[Dark] Golden Noir.css b/config/waybar/style/[Dark] Golden Noir.css
index 96ac0b90..fe5fd290 100644
--- a/config/waybar/style/[Dark] Golden Noir.css
+++ b/config/waybar/style/[Dark] Golden Noir.css
@@ -135,6 +135,7 @@ tooltip {
#custom-cava_mviz,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -171,6 +172,12 @@ tooltip {
}
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#battery.critical:not(.charging) {
color: #f53c3c;
animation-name: blink;
diff --git a/config/waybar/style/[Dark] Half-Moon.css b/config/waybar/style/[Dark] Half-Moon.css
index 67cb4f97..9804f455 100644
--- a/config/waybar/style/[Dark] Half-Moon.css
+++ b/config/waybar/style/[Dark] Half-Moon.css
@@ -124,6 +124,7 @@ color: #F3F4F5;
#custom-light_dark,
#custom-swaync,
+#custom-hypridle,
#idle_inhibitor,
#clock {
color: #B8CC52;
@@ -133,6 +134,12 @@ color: #F3F4F5;
padding: 2px 15px;
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#bluetooth {
color: blue;
background: #0F1419;
diff --git a/config/waybar/style/[Dark] Latte-Wallust combined.css b/config/waybar/style/[Dark] Latte-Wallust combined.css
index c0cf90a3..bb768c92 100644
--- a/config/waybar/style/[Dark] Latte-Wallust combined.css
+++ b/config/waybar/style/[Dark] Latte-Wallust combined.css
@@ -169,6 +169,8 @@ tooltip {
#custom-keyboard,
#custom-light_dark,
#custom-lock,
+#custom-hint,
+#custom-hypridle,
#custom-menu,
#custom-power_vertical,
#custom-power,
@@ -340,10 +342,19 @@ tooltip {
min-width: 10px;
border-radius: 5px;
}
+
+#custom-hypridle,
#custom-lock,
#idle_inhibitor {
color: @teal;
}
+
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#clock {
color: @sapphire;
border-radius: 15px;
diff --git a/config/waybar/style/[Dark] Purpl.css b/config/waybar/style/[Dark] Purpl.css
index ed06d3b5..2f99e43a 100644
--- a/config/waybar/style/[Dark] Purpl.css
+++ b/config/waybar/style/[Dark] Purpl.css
@@ -133,6 +133,7 @@ tooltip {
#custom-cava_mviz,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -169,6 +170,12 @@ tooltip {
}
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#taskbar button.active {
background-color: purple;
padding-left: 12px;
diff --git a/config/waybar/style/[Dark] Wallust Obsidian Edge.css b/config/waybar/style/[Dark] Wallust Obsidian Edge.css
index 06385e44..5ba7c70e 100644
--- a/config/waybar/style/[Dark] Wallust Obsidian Edge.css
+++ b/config/waybar/style/[Dark] Wallust Obsidian Edge.css
@@ -137,6 +137,7 @@ tooltip label {
#custom-cava_mviz,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -174,6 +175,12 @@ tooltip label {
}
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#battery.critical:not(.charging) {
color: #f53c3c;
animation-name: blink;
diff --git a/config/waybar/style/[Extra] Crimson.css b/config/waybar/style/[Extra] Crimson.css
index 89dbb93a..77777472 100644
--- a/config/waybar/style/[Extra] Crimson.css
+++ b/config/waybar/style/[Extra] Crimson.css
@@ -129,6 +129,7 @@ tooltip {
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -164,6 +165,12 @@ tooltip {
color: #000000;
}
}
+
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
#battery.critical:not(.charging) {
color: #f53c3c;
diff --git a/config/waybar/style/[Extra] EverForest.css b/config/waybar/style/[Extra] EverForest.css
index 89a397c2..b7d6e753 100644
--- a/config/waybar/style/[Extra] EverForest.css
+++ b/config/waybar/style/[Extra] EverForest.css
@@ -219,6 +219,7 @@ window#waybar.empty #window {
background-color: @bg0;
}
+#custom-hypridle,
#idle_inhibitor {
padding: 0px 5px;
border-radius: 5px;
@@ -226,6 +227,8 @@ window#waybar.empty #window {
background-color: @blue;
color: @black;
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
#idle_inhibitor.activated {
background-color: @fg;
color: @bg0;
@@ -308,6 +311,7 @@ window#waybar.empty #window {
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
diff --git a/config/waybar/style/[Extra] Mauve.css b/config/waybar/style/[Extra] Mauve.css
index 120b5389..916ff140 100644
--- a/config/waybar/style/[Extra] Mauve.css
+++ b/config/waybar/style/[Extra] Mauve.css
@@ -146,6 +146,7 @@ tooltip {
#custom-cava_mviz,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -183,6 +184,12 @@ tooltip {
}
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#battery.critical:not(.charging) {
color: #f53c3c;
animation-name: blink;
diff --git a/config/waybar/style/[Extra] Rose Pine.css b/config/waybar/style/[Extra] Rose Pine.css
index 411c96e5..9ebd46f3 100644
--- a/config/waybar/style/[Extra] Rose Pine.css
+++ b/config/waybar/style/[Extra] Rose Pine.css
@@ -127,6 +127,7 @@ tooltip {
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -165,6 +166,12 @@ tooltip {
background-color: red;
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#backlight {
padding-right: 2px;
}
diff --git a/config/waybar/style/[Extra] Simple Pink.css b/config/waybar/style/[Extra] Simple Pink.css
index 45cd0dad..1e006764 100644
--- a/config/waybar/style/[Extra] Simple Pink.css
+++ b/config/waybar/style/[Extra] Simple Pink.css
@@ -139,6 +139,7 @@ tooltip {
#custom-cava_mviz,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -176,6 +177,12 @@ tooltip {
}
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#taskbar button.active {
background-color: pink;
padding-left: 12px;
diff --git a/config/waybar/style/[Light] Monochrome Contrast.css b/config/waybar/style/[Light] Monochrome Contrast.css
index 83524d39..34a6a0c9 100644
--- a/config/waybar/style/[Light] Monochrome Contrast.css
+++ b/config/waybar/style/[Light] Monochrome Contrast.css
@@ -130,6 +130,7 @@ tooltip label{
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -158,9 +159,11 @@ tooltip label{
padding: 1px 3px;
}
/*-----Indicators----*/
+#custom-hypridle.notactive,
#idle_inhibitor.activated {
- color: #2dcc36;
+ color: #ffd700;
}
+
#pulseaudio.muted {
color: #cc3436;
}
diff --git a/config/waybar/style/[Light] Obsidian Glow.css b/config/waybar/style/[Light] Obsidian Glow.css
index 001117f5..862763a3 100644
--- a/config/waybar/style/[Light] Obsidian Glow.css
+++ b/config/waybar/style/[Light] Obsidian Glow.css
@@ -104,6 +104,7 @@ tooltip label {
#custom-cava_mviz,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -141,6 +142,12 @@ tooltip label {
}
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#taskbar button.active {
background-color: #585b70;
color: #cdd6f4;
diff --git a/config/waybar/style/[Retro] Simple Style.css b/config/waybar/style/[Retro] Simple Style.css
index f966b858..6c1f731f 100644
--- a/config/waybar/style/[Retro] Simple Style.css
+++ b/config/waybar/style/[Retro] Simple Style.css
@@ -70,6 +70,7 @@ window#waybar {
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -101,6 +102,12 @@ window#waybar {
border-bottom: 3px solid yellow;
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#battery.critical,
#disk.critical,
#memory.critical,
diff --git a/config/waybar/style/[Transparent] Crystal Clear.css b/config/waybar/style/[Transparent] Crystal Clear.css
index 7bf67f9b..e6a475ca 100644
--- a/config/waybar/style/[Transparent] Crystal Clear.css
+++ b/config/waybar/style/[Transparent] Crystal Clear.css
@@ -91,6 +91,7 @@ window#waybar.empty #window {
#workspaces,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -126,6 +127,13 @@ window#waybar.empty #window {
color: #000000;
}
}
+
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#taskbar button:hover {
padding-left: 3px;
padding-right: 3px;
diff --git a/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css b/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css
index 198fd450..e06c8a13 100644
--- a/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css
+++ b/config/waybar/style/[Wallust Bordered] Chroma Fusion Edge.css
@@ -80,6 +80,7 @@ tooltip {
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -165,10 +166,17 @@ tooltip {
}
#custom-lock,
+#custom-hypridle,
#idle_inhibitor {
color: @teal;
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#custom-cava_mviz{
color: @color2;
}
diff --git a/config/waybar/style/[Wallust Bordered] Chroma Simple.css b/config/waybar/style/[Wallust Bordered] Chroma Simple.css
index 047a91c3..1bd50f8c 100644
--- a/config/waybar/style/[Wallust Bordered] Chroma Simple.css
+++ b/config/waybar/style/[Wallust Bordered] Chroma Simple.css
@@ -105,6 +105,7 @@ tooltip {
#custom-cava_mviz,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -225,9 +226,10 @@ tooltip {
border: 2px solid @color14;
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
#idle_inhibitor.activated {
- color: @color12;
- border: 2px solid @color12;
+ color: #ffd700;
}
#battery.good {
diff --git a/config/waybar/style/[Wallust Transparent] Crystal Clear.css b/config/waybar/style/[Wallust Transparent] Crystal Clear.css
index d6060407..50e03d59 100644
--- a/config/waybar/style/[Wallust Transparent] Crystal Clear.css
+++ b/config/waybar/style/[Wallust Transparent] Crystal Clear.css
@@ -115,6 +115,7 @@ window#waybar.empty #window {
#workspaces,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -150,6 +151,12 @@ window#waybar.empty #window {
color: #000000;
}
}
+
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
#battery.critical:not(.charging) {
color: @critical;
diff --git a/config/waybar/style/[Wallust] Box type.css b/config/waybar/style/[Wallust] Box type.css
index 0bdf607b..e176dd8e 100644
--- a/config/waybar/style/[Wallust] Box type.css
+++ b/config/waybar/style/[Wallust] Box type.css
@@ -105,6 +105,7 @@ window#waybar.empty #window {
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -141,6 +142,12 @@ window#waybar.empty #window {
padding-right: 2px;
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}}
+
#network {
padding-right: 12px;
}
diff --git a/config/waybar/style/[Wallust] Chroma Edge.css b/config/waybar/style/[Wallust] Chroma Edge.css
index 6dea2949..a54b54ae 100644
--- a/config/waybar/style/[Wallust] Chroma Edge.css
+++ b/config/waybar/style/[Wallust] Chroma Edge.css
@@ -107,6 +107,7 @@ tooltip label{
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -311,9 +312,10 @@ label:focus {
/*background-color: #2d3436;*/
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
#idle_inhibitor.activated {
- /*background-color: #ecf0f1;*/
- color: #2dcc36;
+ color: #ffd700;
}
#temperature {
diff --git a/config/waybar/style/[Wallust] Chroma Fusion.css b/config/waybar/style/[Wallust] Chroma Fusion.css
index cb1abdf3..ee71aef8 100644
--- a/config/waybar/style/[Wallust] Chroma Fusion.css
+++ b/config/waybar/style/[Wallust] Chroma Fusion.css
@@ -80,6 +80,7 @@ tooltip {
#workspaces,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -166,10 +167,17 @@ tooltip {
}
#custom-lock,
+#custom-hypridle,
#idle_inhibitor {
color: @teal;
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#workspaces {
margin: 3px 3px 3px 3px;
padding: 0px 1px;
diff --git a/config/waybar/style/[Wallust] Chroma Tally.css b/config/waybar/style/[Wallust] Chroma Tally.css
index ec6b6e14..0648e02f 100644
--- a/config/waybar/style/[Wallust] Chroma Tally.css
+++ b/config/waybar/style/[Wallust] Chroma Tally.css
@@ -99,6 +99,7 @@ tooltip {
#custom-backlight,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -205,10 +206,17 @@ tooltip {
}
#keyboard-state,
+#custom-hypridle,
#idle_inhibitor {
color: #ebcb8b;
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#tray {
}
diff --git a/config/waybar/style/[Wallust] Colored.css b/config/waybar/style/[Wallust] Colored.css
index ba4e3163..de15af33 100644
--- a/config/waybar/style/[Wallust] Colored.css
+++ b/config/waybar/style/[Wallust] Colored.css
@@ -131,6 +131,7 @@ tooltip {
#custom-cava_mviz,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -167,6 +168,12 @@ tooltip {
}
}
+/*-----Indicators----*/
+#custom-hypridle.notactive,
+#idle_inhibitor.activated {
+ color: #ffd700;
+}
+
#taskbar button.active {
background-color: rgb(47, 46, 46);
border-radius: 30px;
diff --git a/config/waybar/style/[Wallust] Simple.css b/config/waybar/style/[Wallust] Simple.css
index d68d3a6e..30522f03 100644
--- a/config/waybar/style/[Wallust] Simple.css
+++ b/config/waybar/style/[Wallust] Simple.css
@@ -129,6 +129,7 @@ tooltip {
#custom-cava_mviz,
#custom-cycle_wall,
#custom-hint,
+#custom-hypridle,
#custom-keyboard,
#custom-light_dark,
#custom-lock,
@@ -165,9 +166,11 @@ tooltip {
padding: 1px 3px;
}
/*-----Indicators----*/
+#custom-hypridle.notactive,
#idle_inhibitor.activated {
- color: #2dcc36;
+ color: #ffd700;
}
+
#pulseaudio.muted {
color: #cc3436;
}
diff --git a/copy.sh b/copy.sh
index ff19ab97..7efae273 100755
--- a/copy.sh
+++ b/copy.sh
@@ -104,7 +104,7 @@ layout=$(detect_layout)
if [ "$layout" = "(unset)" ]; then
while true; do
printf "\n%.0s" {1..1}
-print_color $RED "
+print_color $ORANGE "
█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
STOP AND READ
█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█
@@ -152,7 +152,7 @@ while true; do
break ;;
[nN])
printf "\n%.0s" {1..2}
-print_color $RED "
+print_color $ORANGE "
█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
STOP AND READ
█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage