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 new file mode 100644 index 0000000000000000000000000000000000000000..8b084cf038b3f35dcb649238cfc01bb4f3664e42 --- /dev/null +++ b/content/notes/2025-07-19-minimal-desktop-with-cwm-and-conky.md @@ -0,0 +1,24 @@ +--- +title: Minimal desktop setup with cwm and conky +url: minimal-desktop-with-cwm-and-conky.html +date: 2025-07-19T16:13:13+02:00 +type: note +draft: false +tags: [] +--- + +![cwm and conky](assets/notes/cwm.png?no-border) + +Configuration for the setup in the picture is located within commit [d29a085](https://github.com/mitjafelicijan/dotfiles/tree/d29a085e2f2fb35a81b50b7ce213d2a11eddd826). + +Important files to check: + +- [.cwmrc](https://github.com/mitjafelicijan/dotfiles/blob/d29a085e2f2fb35a81b50b7ce213d2a11eddd826/.cwmrc) +- [.conkyrc](https://github.com/mitjafelicijan/dotfiles/blob/d29a085e2f2fb35a81b50b7ce213d2a11eddd826/.conkyrc) + +Other files are not important. + +Read more: + +- [cwm (Calm Window Manager)](https://man.openbsd.org/cwm.1) +- [conky (Light-weight system monitor)](https://github.com/brndnmtthws/conky) \ No newline at end of file diff --git a/static/assets/notes/cwm.png b/static/assets/notes/cwm.png new file mode 100644 index 0000000000000000000000000000000000000000..c1a514b243656baa82fcd2f2b8a7663a06d69388 Binary files /dev/null and b/static/assets/notes/cwm.png differ diff --git a/templates/base.html b/templates/base.html index 8daed28b2aa0bfc07d9c96a896bdd6cfe0925d00..585237f00d6557f724db87e017a53577fd4b69a5 100644 --- a/templates/base.html +++ b/templates/base.html @@ -68,7 +68,7 @@ img, video, audio { max-width: 100%; } figure { display: flex; justify-content: center; margin: 2.5em 0; } img, video { border: var(--border-width) solid var(--primary-color); padding: 0.5em; } - img.no-border, video.no-border { border: 0; padding: 0; } + img.no-border, video.no-border, img[src$="?no-border"] { border: 0; padding: 0; } 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; } code { background: var(--code-color); padding: 0 0.2em; }