Skip to content

Instantly share code, notes, and snippets.

View kostyawhite's full-sized avatar

Konstantin kostyawhite

  • Moscow
View GitHub Profile
@fish2000
fish2000 / uninstall-all-via-pip.sh
Last active February 29, 2024 17:41
Get Rid Of PyObjC
yes | pip uninstall pyobjc-core \
pyobjc-framework-Accounts \
pyobjc-framework-AddressBook \
pyobjc-framework-AppleScriptKit \
pyobjc-framework-AppleScriptObjC \
pyobjc-framework-Automator \
pyobjc-framework-CFNetwork \
pyobjc-framework-CalendarStore \
pyobjc-framework-Cocoa \
pyobjc-framework-Collaboration \
@asethwright
asethwright / vim-color-change
Created July 8, 2014 15:39
Vim Cursor Color Change in TMUX
" Cursor to yellow on insert mode
" Blue on command/other mode
" Note the use of hex codes (ie 3971ED)
if exists('$TMUX')
let &t_EI = "\<Esc>Ptmux;\<Esc>\033]Pl3971ED\033\\"
let &t_SI = "\<Esc>Ptmux;\<Esc>\033]PlFBA922\033\\"
silent !echo -ne "\<Esc>Ptmux;\<Esc>\033]Pl3971ED\033\\"
autocmd VimLeave * silent !echo -ne "\<Esc>Ptmux;\<Esc>\033]Pl3971ED\033\\"
else
let &t_EI = "\033]Pl3971ED\033\\"