|
diff --git a/content/notes/2025-07-19-minimal-desktop-with-cwm-and-conky.md b/content/notes/2025-07-19-minimal-desktop-with-cwm-and-conky.md
|
|
|
1 |
--- |
|
|
2 |
title: Minimal desktop setup with cwm and conky |
|
|
3 |
url: minimal-desktop-with-cwm-and-conky.html |
|
|
4 |
date: 2025-07-19T16:13:13+02:00 |
|
|
5 |
type: note |
|
|
6 |
draft: false |
|
|
7 |
tags: [] |
|
|
8 |
--- |
|
|
9 |
|
|
|
10 |
 |
|
|
11 |
|
|
|
12 |
Configuration for the setup in the picture is located within commit [d29a085](https://github.com/mitjafelicijan/dotfiles/tree/d29a085e2f2fb35a81b50b7ce213d2a11eddd826). |
|
|
13 |
|
|
|
14 |
Important files to check: |
|
|
15 |
|
|
|
16 |
- [.cwmrc](https://github.com/mitjafelicijan/dotfiles/blob/d29a085e2f2fb35a81b50b7ce213d2a11eddd826/.cwmrc) |
|
|
17 |
- [.conkyrc](https://github.com/mitjafelicijan/dotfiles/blob/d29a085e2f2fb35a81b50b7ce213d2a11eddd826/.conkyrc) |
|
|
18 |
|
|
|
19 |
Other files are not important. |
|
|
20 |
|
|
|
21 |
Read more: |
|
|
22 |
|
|
|
23 |
- [cwm (Calm Window Manager)](https://man.openbsd.org/cwm.1) |
|
|
24 |
- [conky (Light-weight system monitor)](https://github.com/brndnmtthws/conky) |
|
diff --git a/templates/base.html b/templates/base.html
|
| ... |
| 68 |
img, video, audio { max-width: 100%; } |
68 |
img, video, audio { max-width: 100%; } |
| 69 |
figure { display: flex; justify-content: center; margin: 2.5em 0; } |
69 |
figure { display: flex; justify-content: center; margin: 2.5em 0; } |
| 70 |
img, video { border: var(--border-width) solid var(--primary-color); padding: 0.5em; } |
70 |
img, video { border: var(--border-width) solid var(--primary-color); padding: 0.5em; } |
| 71 |
img.no-border, video.no-border { border: 0; padding: 0; } |
71 |
img.no-border, video.no-border, img[src$="?no-border"] { border: 0; padding: 0; } |
| 72 |
|
72 |
|
| 73 |
pre { background: var(--code-color)!important; border: var(--border-width) solid var(--primary-color); text-wrap: wrap; padding: 1.0em; line-height: 170%; text-wrap: nowrap; overflow-x: auto; } |
73 |
pre { background: var(--code-color)!important; border: var(--border-width) solid var(--primary-color); text-wrap: wrap; padding: 1.0em; line-height: 170%; text-wrap: nowrap; overflow-x: auto; } |
| 74 |
code { background: var(--code-color); padding: 0 0.2em; } |
74 |
code { background: var(--code-color); padding: 0 0.2em; } |
| ... |