I would like to make a few changes to a package installed via package-install. What’s the canonical way to do so?
https://emacs.stackexchange.com/questions/21216/edit-fork-packages-installed-via-package-install
I would like to make a few changes to a package installed via package-install. What’s the canonical way to do so?
https://emacs.stackexchange.com/questions/21216/edit-fork-packages-installed-via-package-install
; Global settings for redshift | |
[redshift] | |
; Set the day and night screen temperatures | |
temp-day=5700 | |
temp-night=3000 | |
; Disable the smooth fade between temperatures when Redshift starts and stops. | |
; 0 will cause an immediate change between screen temperatures. | |
; 1 will gradually apply the new screen temperature over a couple of seconds. | |
fade=1 |
- Trying to figure out how lightdm gets started | |
[... huge section with all the legwork omitted. Here's my summary] | |
1. The systemd boot process begins | |
2. At some point, the conditions in the systemd unit lightdm.service are met. | |
/etc/systemd/system/display-manager.service: | |
... |
rm ~/Library/Preferences/com.http-symless-com.Synergy.plist | |
rm -rf ~/Library/Synergy/ | |
killall -u $USER cfprefsd | |
echo "finish removing Synergy settings" |
wget \ | |
--recursive \ | |
--no-clobber \ | |
--page-requisites \ | |
--html-extension \ | |
--convert-links \ | |
--restrict-file-names=windows \ | |
--domains the-site-to-get.com \ | |
--no-parent \ | |
-w 2 \ |
/usr/libexec/PlistBuddy -c 'Add :LSUIElement bool true' /Applications/iTerm.app/Contents/Info.plist |
git --git-dir=../other-repo-directory/.git format-patch -k -1 --stdout <insert commit hash> | git am -3 -k |
HOMEBREW_VERSION: 0.9.5 | |
ORIGIN: https://github.com/mxcl/homebrew.git | |
HEAD: 57560ed57f49fa76a950e01018f736dfaf959725 | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
CPU: dual-core 64-bit penryn | |
OS X: 10.6.8-i386 | |
Xcode: 3.2.6 | |
GCC-4.0: build 5494 | |
GCC-4.2: build 5666 |
/** | |
* Cafe | |
*/ | |
@import url(http://fonts.googleapis.com/css?family=Quicksand|Josefin+Sans:300,400); | |
body { | |
margin: 0; | |
} | |
header { | |
font-family: 'Josefin Sans', sans-serif; |
# ref: http://superuser.com/a/37153 | |
rsync -av --remove-source-files src/ dest/ |