diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-05-10 14:44:07 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-05-10 14:44:07 +0400 |
| commit | 40ce35bd2f379f2c30e51173752926f8c620ffd6 (patch) | |
| tree | d8bb4e1651758edd2af52e4b0a4b40c3c0f13c0e /.local/bin/lemonbar/modules/clock.py | |
| parent | 2f6db370d4086eca956279ea41cd305b474f9caf (diff) | |
Changed window manager to bspwm and added custom config for lemonbar
Diffstat (limited to '.local/bin/lemonbar/modules/clock.py')
| -rw-r--r-- | .local/bin/lemonbar/modules/clock.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.local/bin/lemonbar/modules/clock.py b/.local/bin/lemonbar/modules/clock.py new file mode 100644 index 0000000..c4dc713 --- /dev/null +++ b/.local/bin/lemonbar/modules/clock.py @@ -0,0 +1,6 @@ +from time import strftime + + +def callback(): + clock = strftime("%d %b (%a) %H:%M") + return f"CLK: {clock}" |