Compare commits
4 commits
aa191a8c04
...
21a14f4aa2
Author | SHA1 | Date | |
---|---|---|---|
21a14f4aa2 | |||
9a0be40465 | |||
7b84496201 | |||
7c3facdd0f |
10 changed files with 227 additions and 23 deletions
|
@ -50,7 +50,6 @@
|
|||
--pico-font-family-sans-serif: 'Nunito Sans', sans-serif, var(--pico-font-family-emoji);
|
||||
--pico-card-sectioning-background-color: transparent;
|
||||
--pico-typography-spacing-vertical: calc(1.5 * var(--pico-spacing));
|
||||
--markup-color: rgb(194 198 207 / 100%);
|
||||
}
|
||||
|
||||
@media only screen and (prefers-color-scheme: light) {
|
||||
|
@ -58,6 +57,10 @@
|
|||
--pico-background-color: rgb(247 249 252 / 100%);
|
||||
--pico-card-background-color: rgb(255 255 255 / 100%);
|
||||
--pico-card-sectioning-background-color: transparent;
|
||||
--pico-code-color: inherit;
|
||||
|
||||
--color-codeblock-meta-background: rgb(255 255 255 / 100%);
|
||||
--markup-color: rgb(194 198 207 / 100%);
|
||||
}
|
||||
|
||||
.admonition.warning {
|
||||
|
@ -72,6 +75,13 @@
|
|||
}
|
||||
|
||||
@media only screen and (prefers-color-scheme: dark) {
|
||||
:root:not([data-theme]) {
|
||||
--pico-code-color: inherit;
|
||||
|
||||
--color-codeblock-meta-background: rgb(0 0 0 / 30%);
|
||||
--markup-color: rgb(89 94 104 / 100%);
|
||||
}
|
||||
|
||||
.admonition.warning {
|
||||
--admonition-background-color: rgb(52 46 38 / 100%);
|
||||
--admonition-border-color: rgb(255 208 143 / 100%);
|
||||
|
@ -222,11 +232,6 @@ body {
|
|||
}
|
||||
}
|
||||
|
||||
@media (width >= 1024px) {
|
||||
.metadata p {
|
||||
display: inline;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
|
@ -256,6 +261,15 @@ main {
|
|||
margin-top: 0.3em;
|
||||
}
|
||||
|
||||
@media (width >= 1024px) {
|
||||
.metadata p {
|
||||
display: inline;
|
||||
}
|
||||
}
|
||||
|
||||
.tags i {
|
||||
margin-inline-start: 0.5em;
|
||||
}
|
||||
|
||||
.category a {
|
||||
font-family: var(--pico-font-family-sans-serif);
|
||||
|
@ -444,3 +458,47 @@ main {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Code blocks
|
||||
*/
|
||||
|
||||
.highlight {
|
||||
position: relative;
|
||||
|
||||
> div {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
padding: 0.5em 1.2em;
|
||||
color: var(--pico-muted-color);
|
||||
background-color: var(--color-codeblock-meta-background);
|
||||
font-family: var(--pico-font-family-monospace);
|
||||
font-size: 0.7em;
|
||||
line-height: 1em;
|
||||
border-end-start-radius: var(--pico-border-radius);
|
||||
|
||||
span {
|
||||
border-inline-start: inset 1px var(--pico-muted-color);
|
||||
padding-inline-start: 1em;
|
||||
margin-inline-start: 1em;
|
||||
cursor: pointer;
|
||||
|
||||
&::before {
|
||||
content: "\ecd5";
|
||||
font-family: "remixicon";
|
||||
font-weight: normal;
|
||||
margin-inline-end: 0.5em;
|
||||
}
|
||||
|
||||
&.copied::before {
|
||||
content: "\eb7b";
|
||||
}
|
||||
|
||||
&.not-copied::before {
|
||||
content: "\eca1";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,21 +2,68 @@
|
|||
|
||||
// Listens for clicks on the mobile menu toggle and the main menu close toggle.
|
||||
window.addEventListener('click', function(e) {
|
||||
if (e.target.matches('#menu-toggle, #menu-toggle i')) {
|
||||
openMenu();
|
||||
} else if (e.target.matches('#menu-close, #menu-close i')) {
|
||||
closeMenu();
|
||||
} else if (e.target.matches('[data-action="copy"]')) {
|
||||
copyCodeToClipboard(e);
|
||||
}
|
||||
});
|
||||
|
||||
function openMenu() {
|
||||
const menu = document.getElementById('menu'),
|
||||
menuToggle = document.getElementById('menu-toggle'),
|
||||
body = document.body;
|
||||
|
||||
if (e.target.matches('#menu-toggle, #menu-toggle i')) {
|
||||
menu.classList.toggle('active');
|
||||
menu.ariaHidden = false;
|
||||
menuToggle.ariaExpanded = true;
|
||||
body.style.overflow = 'hidden';
|
||||
}
|
||||
}
|
||||
|
||||
function closeMenu() {
|
||||
const menu = document.getElementById('menu'),
|
||||
menuToggle = document.getElementById('menu-toggle'),
|
||||
body = document.body;
|
||||
|
||||
if (e.target.matches('#menu-close, #menu-close i')) {
|
||||
menu.classList.remove('active');
|
||||
menu.ariaHidden = true;
|
||||
menuToggle.ariaExpanded = false;
|
||||
body.style.overflow = 'auto';
|
||||
}
|
||||
|
||||
function copyCodeToClipboard(e) {
|
||||
const codeTag = e.target.closest('.highlight').querySelector("code");
|
||||
|
||||
if (!codeTag) return;
|
||||
|
||||
const tw = document.createTreeWalker(
|
||||
codeTag,
|
||||
NodeFilter.SHOW_TEXT,
|
||||
(node) => {
|
||||
if (node.parentElement.matches(".ln")) {
|
||||
return NodeFilter.FILTER_REJECT;
|
||||
}
|
||||
});
|
||||
|
||||
return NodeFilter.FILTER_ACCEPT;
|
||||
},
|
||||
);
|
||||
|
||||
let acc = "";
|
||||
while (tw.nextNode()) {
|
||||
acc += tw.currentNode.textContent;
|
||||
}
|
||||
|
||||
navigator.clipboard.writeText(acc)
|
||||
.then(() => {
|
||||
e.target.classList.add('copied');
|
||||
|
||||
setTimeout(() => {
|
||||
e.target.classList.remove('copied');
|
||||
}, 5000);
|
||||
})
|
||||
.catch(() => {
|
||||
e.target.classList.add('not-copied');
|
||||
});
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
# vim: spell spelllang=en
|
||||
title: 'Embracing Modern CSS'
|
||||
slug: '008-embracing-modern-css'
|
||||
slug: '8-embracing-modern-css'
|
||||
date: '2025-07-06T14:29:26+02:00'
|
||||
draft: false
|
||||
categories:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
# vim: spell spelllang=fr
|
||||
title: 'Adopter un CSS moderne'
|
||||
slug: '008-adopter-css-moderne'
|
||||
slug: '8-adopter-css-moderne'
|
||||
date: '2025-07-06T14:29:26+02:00'
|
||||
draft: false
|
||||
categories:
|
||||
|
|
36
content/blog/going-dark.en.md
Normal file
36
content/blog/going-dark.en.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
---
|
||||
title: 'Going Dark'
|
||||
slug: 'going-dark'
|
||||
date: '2025-07-01T00:10:19+02:00'
|
||||
draft: true
|
||||
categories:
|
||||
- Tooling
|
||||
tags:
|
||||
- darkman
|
||||
- vivaldi
|
||||
- waybar
|
||||
- wofi
|
||||
summary: |
|
||||
entrer le résumé
|
||||
description: |
|
||||
entrer la description
|
||||
---
|
||||
|
||||
I usually live in the terminal for most things: edit text files (neovim),
|
||||
read and write emails (aerc), chat on Mattermost (matterhorn), browse files
|
||||
(vifm), and so on. I might write on that later. My terminal and everything in it
|
||||
is themed with Solarized Dark. That will not change.
|
||||
|
||||
For the few GUI applications I use, the light theme is ery aggressive at night.
|
||||
Here are some tips to automatically switch a few of them between light and dark
|
||||
mode.
|
||||
|
||||
## Automate with darkman
|
||||
|
||||
## GTK Apps
|
||||
|
||||
## Vivaldi
|
||||
|
||||
## Add A Switcher To Waybar
|
||||
|
||||
## Switch Wofi Theme
|
13
content/blog/hugo-translating-taxonomy-terms.en.md
Normal file
13
content/blog/hugo-translating-taxonomy-terms.en.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: 'Hugo Translating Taxonomy Terms'
|
||||
slug: 'hugo-translating-taxonomy-terms'
|
||||
date: '2025-07-02T22:35:43+02:00'
|
||||
draft: true
|
||||
categories: []
|
||||
tags:
|
||||
-
|
||||
summary: |
|
||||
entrer le résumé
|
||||
description: |
|
||||
entrer la description
|
||||
---
|
36
content/blog/jj-main-vcs/index.en.md
Normal file
36
content/blog/jj-main-vcs/index.en.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
---
|
||||
title: 'I Use jj as my Main VCS'
|
||||
slug: 'i-use-jj-as-my-main-vcs'
|
||||
date: '2025-07-02T18:04:31+02:00'
|
||||
draft: true
|
||||
categories:
|
||||
- Tooling
|
||||
tags:
|
||||
- jj
|
||||
- git
|
||||
summary: |
|
||||
entrer le résumé
|
||||
description: |
|
||||
entrer la description
|
||||
resources:
|
||||
- src: jj-logo.svg
|
||||
params:
|
||||
legend: jj logo
|
||||
---
|
||||
|
||||
I stumbled upon [jj] sometimes last year but I decided to give it a real go a
|
||||
few month ago. It has already become my main VCS for all my code, even as a
|
||||
replacement of git.
|
||||
|
||||

|
||||
|
||||
does things right:
|
||||
|
||||
- undo that works
|
||||
- versioned working copy (restore a deleted file to a previous version)
|
||||
- jj git fetch removes local branches when the remote is removed
|
||||
- jj log shows what is useful by default without noise
|
||||
- rebase of trees
|
||||
- rebase of multiple branches
|
||||
|
||||
[jj]: https://github.com/jj-vcs/jj
|
1
content/blog/jj-main-vcs/jj-logo.svg
Normal file
1
content/blog/jj-main-vcs/jj-logo.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 6.8 KiB |
13
layouts/_markup/render-codeblock.html
Normal file
13
layouts/_markup/render-codeblock.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
{{- $result := transform.HighlightCodeBlock . }}
|
||||
<div class="highlight">
|
||||
<div>
|
||||
{{- .Type -}}
|
||||
<span data-action="copy">copy</span>
|
||||
</div>
|
||||
<pre tabindex="0" class="chroma">
|
||||
{{- /* chomp newline */ -}}
|
||||
<code class="language-{{ .Type }}" data-lang="{{ .Type }}">{{ $result.Inner }}</code>
|
||||
{{- /* chomp newline */ -}}
|
||||
</pre>
|
||||
</div>
|
||||
{{- /* chomp trailing newline */ -}}
|
|
@ -5,10 +5,10 @@
|
|||
<header>
|
||||
{{ with .GetTerms "categories" }}
|
||||
<p class="category">
|
||||
{{ range . }}
|
||||
{{- range . }}
|
||||
<a class="p-category" rel="tag" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
||||
{{ break }}
|
||||
{{ end }}
|
||||
{{- break }}
|
||||
{{- end }}
|
||||
</p>
|
||||
{{ end }}
|
||||
<h1 class="p-name">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue