Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikolavp/awesome-pomodoro
Pomodoro time widget for the awesome window manager framework
https://github.com/nikolavp/awesome-pomodoro
List: awesome-pomodoro
Last synced: 3 months ago
JSON representation
Pomodoro time widget for the awesome window manager framework
- Host: GitHub
- URL: https://github.com/nikolavp/awesome-pomodoro
- Owner: nikolavp
- Created: 2011-10-02T12:04:24.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2019-01-09T17:49:58.000Z (almost 6 years ago)
- Last Synced: 2024-05-21T07:03:14.345Z (6 months ago)
- Language: Lua
- Homepage:
- Size: 77.1 KB
- Stars: 59
- Watchers: 7
- Forks: 16
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pomodoro Widget
[![Build Status](https://travis-ci.org/nikolavp/awesome-pomodoro.svg?branch=master)](https://travis-ci.org/nikolavp/awesome-pomodoro)
Here are some screenshots on what you'll get if you include this module:
*
*
*
*more can be found in our [screenshots wiki page](https://github.com/nikolavp/awesome-pomodoro/wiki/Screenshots).
## Installation
cd ~/.config/awesome
git clone git://github.com/nikolavp/awesome-pomodoro.git pomodoro### In you rc.lua:
// insert after beautiful.init("...")
local pomodoro = require("./pomodoro/init")//init the pomodoro object
pomodoro.init()At this point there are two widget you will want to use in your wibox:
* pomodoro.widget - the main widget that will display the time of the current pomodoro.
* pomodoro.icon_widget - the icon that you can use to display close to the text.
### Add the widgets to your wibox
You can use:
* only the text widget:
mywibox[s].widgets = {
pomodoro.widget,
mytextclock,
}* only the icon widget:
mywibox[s].widgets = {
pomodoro.icon_widget,
mytextclock,
}* or you can use them both:
mywibox[s].widgets = {
pomodoro.widget, pomodoro.icon_widget,
mytextclock,
}If you want to change something or bind pomodoro actions to keys, please look at the [custimzations](https://github.com/nikolavp/awesome-pomodoro/wiki/Advanced-customizations) page or open a feature/change request if your thing is not there.
## License
Copyright 2010-2011 François de Metz, Nikolay Sturm(nistude), Nikola Petrov(nikolavp)
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004Copyright (C) 2004 Sam Hocevar
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION0. You just DO WHAT THE FUCK YOU WANT TO.