Add some linux compatibility stuff. WIP...
This commit is contained in:
parent
9c26907f7c
commit
796bfed264
3
.gitignore
vendored
3
.gitignore
vendored
@ -8,3 +8,6 @@ dotfiles/.pip/download_cache
|
||||
dotfiles/.pip/pip.log
|
||||
dotfiles/config/hub
|
||||
dotfiles/cider/.cache/
|
||||
dotfiles/pip/download_cache/
|
||||
.gitignore
|
||||
dotfiles/pip/pip.log
|
@ -1,6 +1,5 @@
|
||||
clear Mod1
|
||||
clear Mod2
|
||||
keycode 63 = Mode_switch
|
||||
keycode 66 = Meta_L
|
||||
add Mod1 = Meta_L
|
||||
add Mod2 = Mode_switch
|
||||
keycode 66 = Control_L
|
||||
clear Lock
|
||||
add Control = Control_L
|
||||
keycode 117 = Caps_Lock
|
||||
add Lock = Caps_Lock
|
@ -1 +1 @@
|
||||
Subproject commit 3404f466e205a3f2a1a84562665cac37a227c650
|
||||
Subproject commit 4cfc0e42cca13c26ec02bd4beea26c37e02da8e9
|
@ -1,4 +1,4 @@
|
||||
alias emacs='temacs'
|
||||
alias emacs='terminal_emacs'
|
||||
is_osx && alias emacs='cocoa_emacs'
|
||||
alias terminal_emacs='_emacs -t'
|
||||
alias ec='_emacs -n '
|
||||
|
@ -107,10 +107,15 @@ function is_osx() {
|
||||
esac
|
||||
}
|
||||
|
||||
function clipboard() {
|
||||
# TODO: Remove this.
|
||||
alias clipboard='oscopy'
|
||||
|
||||
function oscopy() {
|
||||
if is_osx;
|
||||
then
|
||||
reattach-to-user-namespace pbcopy
|
||||
else
|
||||
xclip -selection c
|
||||
fi
|
||||
}
|
||||
|
||||
@ -118,6 +123,8 @@ function ospaste() {
|
||||
if is_osx;
|
||||
then
|
||||
reattach-to-user-namespace pbpaste
|
||||
else
|
||||
xclip -o
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -36,6 +36,6 @@ function smart_copy() {
|
||||
then
|
||||
remote_os_copy
|
||||
else
|
||||
clipboard
|
||||
oscopy
|
||||
fi
|
||||
}
|
||||
|
@ -5,7 +5,6 @@ ddg
|
||||
ouimeaux
|
||||
simplejson
|
||||
invoke
|
||||
cider
|
||||
lxml
|
||||
okcupyd
|
||||
vcrpy
|
||||
|
@ -23,6 +23,7 @@ def setup(ctx):
|
||||
linux.all(ctx)
|
||||
dotfiles(ctx, 'f')
|
||||
install_python_libraries(ctx)
|
||||
powerline(ctx)
|
||||
install_npm_libraries(ctx)
|
||||
change_shell(ctx)
|
||||
|
||||
@ -34,6 +35,11 @@ def dotfiles(ctx, flags=''):
|
||||
return ctx.run('dotfiles -s{1} -R {0}'.format(DOTFILES_DIRECTORY, flags))
|
||||
|
||||
|
||||
@ctask
|
||||
def powerline(ctx):
|
||||
ctx.run('pip install --user git+git://github.com/Lokaltog/powerline')
|
||||
|
||||
|
||||
@ctask
|
||||
def install_python_libraries(ctx):
|
||||
ctx.run('sudo pip install -r {0}'.format(
|
||||
@ -64,3 +70,4 @@ ns.add_task(setup)
|
||||
ns.add_task(install_python_libraries)
|
||||
ns.add_task(install_npm_libraries)
|
||||
ns.add_task(vimstall)
|
||||
ns.add_task(powerline)
|
||||
|
@ -10,7 +10,8 @@ def all(ctx):
|
||||
linux_pacakges = ('zsh', 'tmux', 'emacs24-nox', 'nmap', 'scala', 'default-jdk',
|
||||
'default-jre', 'python-virtualenv', 'htop', 'netcat', 'wget',
|
||||
'zlib1g-dev', 'libxml2-dev', 'libxslt1-dev', 'python-dev',
|
||||
'libncurses5-dev', 'npm', 'python3-dev')
|
||||
'libncurses5-dev', 'xbindkeys', 'python3-dev', 'xclip',
|
||||
'silversearcher-ag', 'npm', 'xdotool')
|
||||
@ctask
|
||||
def apt_get(ctx):
|
||||
install_command = 'sudo apt-get -y install'
|
||||
|
Loading…
Reference in New Issue
Block a user