summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--brightness-widget/br-wid-1.pngbin0 -> 1701 bytes
-rw-r--r--email-widget/em-wid-1.pngbin0 -> 1836 bytes
-rw-r--r--email-widget/em-wid-2.pngbin0 -> 39018 bytes
-rw-r--r--spotify-widget/Selection_015.pngbin0 -> 4623 bytes
-rw-r--r--volume-widget/README.md31
-rw-r--r--volume-widget/vol-widget-1.pngbin0 -> 817 bytes
7 files changed, 32 insertions, 1 deletions
diff --git a/README.md b/README.md
index d587baf..4253a57 100644
--- a/README.md
+++ b/README.md
@@ -18,6 +18,6 @@ These widgets use [Arc icon theme](https://github.com/horst3180/arc-icon-theme)
[Install](https://github.com/horst3180/arc-icon-theme#installation) Arc icon theme and follow installation instructions of each widget.
-In case of any questions/suggestions don't hesitate to contact me, I would be happy to help =)
+In case of any questions/suggestions don't hesitate to contact me, I would be happy to help :)
PRs/issues are welcome! \ No newline at end of file
diff --git a/brightness-widget/br-wid-1.png b/brightness-widget/br-wid-1.png
new file mode 100644
index 0000000..cb11b55
--- /dev/null
+++ b/brightness-widget/br-wid-1.png
Binary files differ
diff --git a/email-widget/em-wid-1.png b/email-widget/em-wid-1.png
new file mode 100644
index 0000000..5290ea8
--- /dev/null
+++ b/email-widget/em-wid-1.png
Binary files differ
diff --git a/email-widget/em-wid-2.png b/email-widget/em-wid-2.png
new file mode 100644
index 0000000..0a0fd3a
--- /dev/null
+++ b/email-widget/em-wid-2.png
Binary files differ
diff --git a/spotify-widget/Selection_015.png b/spotify-widget/Selection_015.png
new file mode 100644
index 0000000..5323d11
--- /dev/null
+++ b/spotify-widget/Selection_015.png
Binary files differ
diff --git a/volume-widget/README.md b/volume-widget/README.md
new file mode 100644
index 0000000..99d3ad8
--- /dev/null
+++ b/volume-widget/README.md
@@ -0,0 +1,31 @@
+# Volume widget
+
+Simple and easy-to-install widget for Awesome Window Manager.
+
+This widget represents the sound level: ![Volume Wiget](./vol-wid-1.png)
+
+## Installation
+
+- clone/copy **volume.lua** file;
+
+- include `volume.lua` and add volume widget to your wibox in rc.lua:
+
+```lua
+require("volume")
+...
+s.mytasklist, -- Middle widget
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ ...
+ volume_widget,
+ ...
+```
+
+## Control volume
+
+To be able to control volume level add following lines in shortcut section of the **rc.lua** (the command could be slightly different depending on your pc configuration):
+
+```lua
+awful.key({ modkey}, "[", function () awful.spawn("amixer -D pulse sset Master 5%-") end, {description = "increase volume", group = "custom"}),
+awful.key({ modkey}, "]", function () awful.spawn("amixer -D pulse sset Master 5%+") end, {description = "decrease volume", group = "custom"}),
+``` \ No newline at end of file
diff --git a/volume-widget/vol-widget-1.png b/volume-widget/vol-widget-1.png
new file mode 100644
index 0000000..ba03630
--- /dev/null
+++ b/volume-widget/vol-widget-1.png
Binary files differ