Dump nixos config after scrubing
This commit is contained in:
commit
5fa4c76c24
854 changed files with 30072 additions and 0 deletions
|
|
@ -0,0 +1,36 @@
|
|||
## awesome-calendar
|
||||
|
||||
Small calendar popup for awesome window manager.
|
||||
|
||||

|
||||
|
||||
This is a polished up and improved module based on the `calendar2.lua` module
|
||||
by Bernd Zeimetz and Marc Dequènes.
|
||||
|
||||
|
||||
### Usage
|
||||
|
||||
In your `rc.lua`:
|
||||
|
||||
```lua
|
||||
local deficient = require("deficient")
|
||||
|
||||
|
||||
-- instanciate widget
|
||||
local calendar_widget = deficient.calendar({})
|
||||
|
||||
-- attach it as popup to your text clock widget
|
||||
calendar_widget:attach(mytextclock)
|
||||
```
|
||||
|
||||
You can also add some options to customize the widget's display. For instance:
|
||||
|
||||
```
|
||||
calendar_widget = deficient.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)
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue