This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From ad923417a9a167ed07449ad0cb7b6c3e7759bb6d Mon Sep 17 00:00:00 2001 | |
From: "Nicolas G. Querol" <[email protected]> | |
Date: Wed, 11 Nov 2020 12:35:47 +0100 | |
Subject: [PATCH] Add `ns-system-appearance-change-functions' hook | |
This implements a new hook, effective only on macOS >= 10.14 (Mojave), | |
that is called when the system changes its appearance (e.g. from light | |
to dark). Users can then implement functions that take this change | |
into account, for instance to load a particular theme. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
perl \ | |
-0777 \ | |
-pe \ | |
-i.old \ | |
"${HOME}/.local/share/fish/fish_history" \ | |
's/- cmd: : (\d{10}):\d+;(.+)\n when: (\d{10})/- cmd: $2\n when: $1/g' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -eux | |
origin_remote="origin" | |
upstream_remote="upstream" | |
patch_branch_prefix="ns-system-appearance-change" | |
emacs_branches="master emacs-30 emacs-29 emacs-28 emacs-27" | |
gist_ids="9618d4aba60a6e691c3a4bdbefbdb9e9 ba7d50d281e71ba9a585be7c89590b1a 6dbb6f21bbb5756b59c1500f1f97094c 33e099eceae527b368bdf196c95d1ba3 8f430884386d1fcc4e216e484cc44c59" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From d93d19eb895055a276f8c1f3dc889a9b2946ae37 Mon Sep 17 00:00:00 2001 | |
From: "Nicolas G. Querol" <[email protected]> | |
Date: Wed, 11 Nov 2020 12:35:47 +0100 | |
Subject: [PATCH] Add `ns-system-appearance-change-functions' hook | |
This implements a new hook, effective only on macOS >= 10.14 (Mojave), | |
that is called when the system changes its appearance (e.g. from light | |
to dark). Users can then implement functions that take this change | |
into account, for instance to load a particular theme. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From e089aaf3d8534c7a6201fdef53769383d98b14d8 Mon Sep 17 00:00:00 2001 | |
From: "Nicolas G. Querol" <[email protected]> | |
Date: Wed, 11 Nov 2020 12:35:47 +0100 | |
Subject: [PATCH] Add `ns-system-appearance-change-functions' hook | |
This implements a new hook, effective only on macOS >= 10.14 (Mojave), | |
that is called when the system changes its appearance (e.g. from light | |
to dark). Users can then implement functions that take this change | |
into account, for instance to load a particular theme. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { margin: 0; padding: 0; box-sizing: border-box; } | |
*, *:before, *:after { box-sizing: inherit; } | |
body { | |
margin: 0 auto; | |
padding: 0; | |
max-width: 700px; | |
color: #555; | |
background-color: #fafafa; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 2fd6ee35bbcdd0a07e882e07706edaa01815853b Mon Sep 17 00:00:00 2001 | |
From: "Nicolas G. Querol" <[email protected]> | |
Date: Wed, 11 Nov 2020 12:35:47 +0100 | |
Subject: [PATCH] Add `ns-system-appearance-change-functions' hook | |
This implements a new hook, effective only on macOS >= 10.14 (Mojave), | |
that is called when the system changes its appearance (e.g. from light | |
to dark). Users can then implement functions that take this change | |
into account, for instance to load a particular theme. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Variables (all configuration should happen here) | |
SHELL = /bin/sh | |
CC = clang | |
CFLAGS = -Wall -Wextra -Wpedantic -std=c99 | |
LDFLAGS = | |
RELEASE_CFLAGS = -Os |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Typewriter</title> | |
<meta charset="utf-8" /> | |
<style typeText="text/css" media="screen"> | |
html, body { | |
height: 100%; | |
margin: 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 2d430cad16b7c7e62f36adf68f021b829aeff503 Mon Sep 17 00:00:00 2001 | |
From: "Nicolas G. Querol" <[email protected]> | |
Date: Wed, 11 Nov 2020 11:38:05 +0100 | |
Subject: [PATCH] Add `ns-system-appearance-change-functions' hook | |
This implements a new hook, effective only on macOS >= 10.14 (Mojave), | |
that is called when the system changes its appearance (e.g. from light | |
to dark). Users can then implement functions that take this change | |
into account, for instance to load a particular theme. |
NewerOlder