Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deficient/calendar
Calendar popup for awesome WM
https://github.com/deficient/calendar
awesome-wm calendar-popup
Last synced: 4 months ago
JSON representation
Calendar popup for awesome WM
- Host: GitHub
- URL: https://github.com/deficient/calendar
- Owner: deficient
- License: unlicense
- Archived: true
- Created: 2017-04-04T16:09:21.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-18T20:12:34.000Z (6 months ago)
- Last Synced: 2024-08-18T21:27:41.163Z (6 months ago)
- Topics: awesome-wm, calendar-popup
- Language: Lua
- Size: 32.2 KB
- Stars: 34
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-awesomewm-modules-widgets-and-libraries - calendar
- awesome-awesomewm-modules-widgets-and-libraries - calendar
README
**This repository has been assimilated into** https://github.com/deficient/deficient
## awesome-calendar
Small calendar popup for awesome window manager.
![Screenshot](/screenshot.png?raw=true "Screenshot")
This is a polished up and improved module based on the `calendar2.lua` module
by Bernd Zeimetz and Marc Dequènes.### Installation
Drop the script into your awesome config folder. Suggestion:
```bash
cd ~/.config/awesome
git clone https://github.com/deficient/calendar.git
```### Usage
In your `rc.lua`:
```lua
-- load the widget code
local calendar = require("calendar")-- attach it as popup to your text clock widget:
calendar({}):attach(mytextclock)
```You can also add some options to customize the widget's display. For instance:
```
local calendar = require("calendar")
calendar_widget = calendar({
fdow = 7, -- Set Sunday as first day of the week (default is
-- 1 = Monday)
position = "bottom_right", -- Useful if you prefer your wibox at the bottomn
-- of the screen
})
calendar_widget:attach(mytextclock)
```### Requirements
* [awesome 4.0](http://awesome.naquadah.org/). May work on 3.5 with minor changes.