diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | brightness-widget/br-wid-1.png | bin | 0 -> 1701 bytes | |||
-rw-r--r-- | email-widget/em-wid-1.png | bin | 0 -> 1836 bytes | |||
-rw-r--r-- | email-widget/em-wid-2.png | bin | 0 -> 39018 bytes | |||
-rw-r--r-- | spotify-widget/Selection_015.png | bin | 0 -> 4623 bytes | |||
-rw-r--r-- | volume-widget/README.md | 31 | ||||
-rw-r--r-- | volume-widget/vol-widget-1.png | bin | 0 -> 817 bytes |
7 files changed, 32 insertions, 1 deletions
@@ -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 Binary files differnew file mode 100644 index 0000000..cb11b55 --- /dev/null +++ b/brightness-widget/br-wid-1.png diff --git a/email-widget/em-wid-1.png b/email-widget/em-wid-1.png Binary files differnew file mode 100644 index 0000000..5290ea8 --- /dev/null +++ b/email-widget/em-wid-1.png diff --git a/email-widget/em-wid-2.png b/email-widget/em-wid-2.png Binary files differnew file mode 100644 index 0000000..0a0fd3a --- /dev/null +++ b/email-widget/em-wid-2.png diff --git a/spotify-widget/Selection_015.png b/spotify-widget/Selection_015.png Binary files differnew file mode 100644 index 0000000..5323d11 --- /dev/null +++ b/spotify-widget/Selection_015.png 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 Binary files differnew file mode 100644 index 0000000..ba03630 --- /dev/null +++ b/volume-widget/vol-widget-1.png |