This file contains hidden or 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 hidden or 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 hidden or 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 00c4de86544f597df5cb10dcf8ce390617ceefa3 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. |
OlderNewer