mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-07 03:35:10 +01:00
Merge branch 'master' of github.com:aquatix/dotfiles
Conflicts: .bash_aliases
This commit is contained in:
5
.vimrc
5
.vimrc
@@ -25,8 +25,11 @@ Plugin 'mhinz/vim-signify'
|
|||||||
Plugin 'tpope/vim-sensible'
|
Plugin 'tpope/vim-sensible'
|
||||||
" Nice colour scheme
|
" Nice colour scheme
|
||||||
Plugin 'jnurmine/Zenburn.git'
|
Plugin 'jnurmine/Zenburn.git'
|
||||||
|
" Quick file system tree, mapped to Ctrl+n for quick toggle
|
||||||
|
Plugin 'scrooloose/nerdtree'
|
||||||
|
map <C-n> :NERDTreeToggle<CR>
|
||||||
|
|
||||||
" ==
|
" == Content convenience
|
||||||
|
|
||||||
" Python autocompletion
|
" Python autocompletion
|
||||||
Plugin 'davidhalter/jedi-vim'
|
Plugin 'davidhalter/jedi-vim'
|
||||||
|
|||||||
24
bin/iris_color
Executable file
24
bin/iris_color
Executable file
@@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Make sure only root can run our script
|
||||||
|
if [[ $EUID -ne 0 ]]; then
|
||||||
|
echo "This script must be run as root" 1>&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd /usr/share/themes
|
||||||
|
|
||||||
|
if [ ! -d "Iris Dark" ]; then
|
||||||
|
echo "Iris theme not found!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -d "Iris Dark Green" ]; then
|
||||||
|
rm -r "Iris Dark Green"
|
||||||
|
fi
|
||||||
|
|
||||||
|
cp -a "Iris Dark" "Iris Dark Green"
|
||||||
|
cd "Iris Dark Green"
|
||||||
|
|
||||||
|
# change orange hilight to green (shade from Faba-Mint)
|
||||||
|
find . -type f -print0 | xargs -0 sed -i 's/df253f/79a142/g'
|
||||||
Reference in New Issue
Block a user