diff --git a/.config/awesome/battery-widget b/.config/awesome/battery-widget new file mode 160000 index 0000000..2bfdbf8 --- /dev/null +++ b/.config/awesome/battery-widget @@ -0,0 +1 @@ +Subproject commit 2bfdbf8d66b5f1c9ca08c203e6c69cf790ca6c3d diff --git a/.config/awesome/brightness b/.config/awesome/brightness new file mode 160000 index 0000000..b9eb82a --- /dev/null +++ b/.config/awesome/brightness @@ -0,0 +1 @@ +Subproject commit b9eb82a7c33163031bf57da29f7405064c73bee7 diff --git a/.config/awesome/calendar b/.config/awesome/calendar new file mode 160000 index 0000000..ee09d05 --- /dev/null +++ b/.config/awesome/calendar @@ -0,0 +1 @@ +Subproject commit ee09d056a1fb8d47894ce7788e3d7707bf088464 diff --git a/.config/awesome/leds-widget b/.config/awesome/leds-widget new file mode 160000 index 0000000..6b3f53b --- /dev/null +++ b/.config/awesome/leds-widget @@ -0,0 +1 @@ +Subproject commit 6b3f53bf281665cf450df02bbf0e76caf8a463c6 diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 32a65c4..03a132c 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -232,6 +232,7 @@ awful.screen.connect_for_each_screen(function(s) wibox.widget.systray(), mytextclock, s.mylayoutbox, + require("battery-widget") {}, }, } end) @@ -574,6 +575,17 @@ client.connect_signal("request::titlebars", function(c) } end) + +---------------------------------------------------- +-- Calendar management +---------------------------------------------------- +local calendar = require("calendar") +-- attach it as popup to your text clock widget: +calendar({}):attach(mytextclock) +---------------------------------------------------- + + + -- Enable sloppy focus, so that focus follows mouse. client.connect_signal("mouse::enter", function(c) if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier diff --git a/.config/awesome/volume-control b/.config/awesome/volume-control new file mode 160000 index 0000000..2e2449d --- /dev/null +++ b/.config/awesome/volume-control @@ -0,0 +1 @@ +Subproject commit 2e2449db2cae23ce9bcde8dbeae27ba769f59667 diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..dd9fb17 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,15 @@ +[submodule ".config/awesome/battery-widget"] + path = .config/awesome/battery-widget + url = https://github.com/deficient/battery-widget.git +[submodule ".config/awesome/leds-widget"] + path = .config/awesome/leds-widget + url = https://github.com/deficient/leds-widget.git +[submodule ".config/awesome/calendar"] + path = .config/awesome/calendar + url = https://github.com/deficient/calendar.git +[submodule ".config/awesome/volume-control"] + path = .config/awesome/volume-control + url = https://github.com/deficient/volume-control.git +[submodule ".config/awesome/brightness"] + path = .config/awesome/brightness + url = https://github.com/deficient/brightness.git