From 2e32f4c724dba12cc3ea608d1b7e85023e0f74b7 Mon Sep 17 00:00:00 2001 From: Pavel Makhov Date: Fri, 9 Jun 2017 16:07:31 -0400 Subject: update readme for volume icon --- volume-widget/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'volume-widget/README.md') diff --git a/volume-widget/README.md b/volume-widget/README.md index 7ce80b7..ba07eca 100644 --- a/volume-widget/README.md +++ b/volume-widget/README.md @@ -21,6 +21,14 @@ s.mytasklist, -- Middle widget volume_widget, ... ``` +- _Optional step._ In Arc icon theme the muted audio level icon (![Volume Widget](./audio-volume-muted-symbolic.svg)) looks like 0 level icon, which could be a bit misleading. + So I decided to use original muted icon for low audio level, and the same icon, but colored in red for muted audio level. Fortunately icons are in svg format, so you can easily recolor them with `sed`, so it would look like this (![Volume Widget](./audio-volume-muted-symbolic_red.svg)): + + ```bash + cd /usr/share/icons/Arc/status/symbolic && + sudo cp audio-volume-muted-symbolic.svg audio-volume-muted-symbolic_red.svg && + sudo sed -i 's/bebebe/ed4737/g' ./audio-volume-muted-symbolic_red.svg + ``` ## Control volume -- cgit v1.2.3 From 43a1e50763fd0dea84d63811f6b0bed58de875b6 Mon Sep 17 00:00:00 2001 From: streetturtle Date: Fri, 9 Jun 2017 16:12:17 -0400 Subject: Update README.md --- volume-widget/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'volume-widget/README.md') diff --git a/volume-widget/README.md b/volume-widget/README.md index ba07eca..7a2ae52 100644 --- a/volume-widget/README.md +++ b/volume-widget/README.md @@ -21,7 +21,7 @@ s.mytasklist, -- Middle widget volume_widget, ... ``` -- _Optional step._ In Arc icon theme the muted audio level icon (![Volume Widget](./audio-volume-muted-symbolic.svg)) looks like 0 level icon, which could be a bit misleading. +- _Optional step._ In Arc icon theme the muted audio level icon () looks like 0 level icon, which could be a bit misleading. So I decided to use original muted icon for low audio level, and the same icon, but colored in red for muted audio level. Fortunately icons are in svg format, so you can easily recolor them with `sed`, so it would look like this (![Volume Widget](./audio-volume-muted-symbolic_red.svg)): ```bash -- cgit v1.2.3 From dd0975a4308d840db95ec50c290dece880c98dbf Mon Sep 17 00:00:00 2001 From: streetturtle Date: Fri, 9 Jun 2017 16:18:30 -0400 Subject: Create README.md --- volume-widget/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'volume-widget/README.md') diff --git a/volume-widget/README.md b/volume-widget/README.md index 7a2ae52..747879c 100644 --- a/volume-widget/README.md +++ b/volume-widget/README.md @@ -21,8 +21,8 @@ s.mytasklist, -- Middle widget volume_widget, ... ``` -- _Optional step._ In Arc icon theme the muted audio level icon () looks like 0 level icon, which could be a bit misleading. - So I decided to use original muted icon for low audio level, and the same icon, but colored in red for muted audio level. Fortunately icons are in svg format, so you can easily recolor them with `sed`, so it would look like this (![Volume Widget](./audio-volume-muted-symbolic_red.svg)): +- _Optional step._ In Arc icon theme the muted audio level icon looks like 0 level icon, which could be a bit misleading. + So I decided to use original muted icon for low audio level, and the same icon, but colored in red for muted audio level. Fortunately icons are in svg format, so you can easily recolor them with `sed`: ```bash cd /usr/share/icons/Arc/status/symbolic && -- cgit v1.2.3