From e214e416d3ce53dec14e5f0e81ceae587f1fd4bc Mon Sep 17 00:00:00 2001 From: streetturtle Date: Wed, 1 Feb 2017 21:25:25 -0500 Subject: screenshots and readme --- README.md | 2 +- brightness-widget/br-wid-1.png | Bin 0 -> 1701 bytes email-widget/em-wid-1.png | Bin 0 -> 1836 bytes email-widget/em-wid-2.png | Bin 0 -> 39018 bytes spotify-widget/Selection_015.png | Bin 0 -> 4623 bytes volume-widget/README.md | 31 +++++++++++++++++++++++++++++++ volume-widget/vol-widget-1.png | Bin 0 -> 817 bytes 7 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 brightness-widget/br-wid-1.png create mode 100644 email-widget/em-wid-1.png create mode 100644 email-widget/em-wid-2.png create mode 100644 spotify-widget/Selection_015.png create mode 100644 volume-widget/README.md create mode 100644 volume-widget/vol-widget-1.png 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 Binary files /dev/null and b/brightness-widget/br-wid-1.png differ diff --git a/email-widget/em-wid-1.png b/email-widget/em-wid-1.png new file mode 100644 index 0000000..5290ea8 Binary files /dev/null and b/email-widget/em-wid-1.png differ diff --git a/email-widget/em-wid-2.png b/email-widget/em-wid-2.png new file mode 100644 index 0000000..0a0fd3a Binary files /dev/null and b/email-widget/em-wid-2.png differ diff --git a/spotify-widget/Selection_015.png b/spotify-widget/Selection_015.png new file mode 100644 index 0000000..5323d11 Binary files /dev/null and b/spotify-widget/Selection_015.png 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 Binary files /dev/null and b/volume-widget/vol-widget-1.png differ -- cgit v1.2.3