Skip to content

Instantly share code, notes, and snippets.

View pawelurb's full-sized avatar

Pawel Urbanowicz pawelurb

View GitHub Profile
defaults write -g NSRequiresAquaSystemAppearance -bool YES
defaults write com.apple.notificationcenterui NSRequiresAquaSystemAppearance -bool NO
@pawelurb
pawelurb / .gitconfig
Last active March 23, 2020 08:44 — forked from robmiller/.gitconfig
Some useful Git aliases that I use every day
#
# Working with branches
#
# Get the current branch name (not so useful in itself, but used in
# other aliases)
branch-name = "!git rev-parse --abbrev-ref HEAD"
# Push the current branch to the remote "origin", and set it to track
# the upstream branch
publish = "!git push -u origin $(git branch-name)"
@pawelurb
pawelurb / com.googlecode.iterm2.plist
Created June 24, 2019 15:27
iTerm2 configuration
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AppleAntiAliasingThreshold</key>
<integer>1</integer>
<key>AppleScrollAnimationEnabled</key>
<integer>0</integer>
<key>AppleSmoothFixedFontsSizeThreshold</key>
<integer>1</integer>