added gtk.css install and removed ctrl+p from vim
This commit is contained in:
parent
f90f0be8dd
commit
2f8d1b3309
30
gtk.css
Normal file
30
gtk.css
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
window.ssd separator:first-child + headerbar:backdrop,
|
||||||
|
window.ssd separator:first-child + headerbar,
|
||||||
|
window.ssd headerbar:first-child:backdrop,
|
||||||
|
window.ssd headerbar:first-child,
|
||||||
|
window.ssd headerbar:last-child:backdrop,
|
||||||
|
window.ssd headerbar:last-child,
|
||||||
|
window.ssd stack headerbar:first-child:backdrop,
|
||||||
|
window.ssd stack headerbar:first-child,
|
||||||
|
window.ssd stack headerbar:last-child:backdrop,
|
||||||
|
window.ssd stack headerbar:last-child,
|
||||||
|
window.ssd decoration,
|
||||||
|
window.ssd headerbar.titlebar {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
window.ssd headerbar * {
|
||||||
|
margin-top: -100px;
|
||||||
|
color: #1c2022; /* May need to tweak, this matches Adwaita Dark */
|
||||||
|
}
|
||||||
|
|
||||||
|
window.ssd headerbar.titlebar,
|
||||||
|
window.ssd headerbar.titlebar button.titlebutton {
|
||||||
|
border: none;
|
||||||
|
font-size: 0;
|
||||||
|
height: 0;
|
||||||
|
margin: 0;
|
||||||
|
max-height: 0;
|
||||||
|
min-height: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
@ -1,8 +1,9 @@
|
|||||||
#!/usr/bin/bash
|
#!/usr/bin/bash
|
||||||
|
|
||||||
for f in $(ls --ignore="*.sh" --ignore="*.md")
|
for f in $(ls --ignore="*.sh" --ignore="*.md" --ignore="*.css")
|
||||||
do
|
do
|
||||||
# echo $f
|
# echo $f
|
||||||
ln -s "$(pwd)/$f" "$HOME/.${f##*/}"
|
ln -s "$(pwd)/$f" "$HOME/.${f##*/}"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
ln -s "$(pwd)/gtk.css" "$HOME/.config/gtk-3.0/gtk.css"
|
2
vimrc
2
vimrc
@ -79,7 +79,7 @@ Plug 'vim-syntastic/syntastic'
|
|||||||
|
|
||||||
" Editor Utils
|
" Editor Utils
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
Plug 'ctrlpvim/ctrlp.vim'
|
" Plug 'ctrlpvim/ctrlp.vim'
|
||||||
Plug 'mattn/emmet-vim'
|
Plug 'mattn/emmet-vim'
|
||||||
Plug 'nathanaelkane/vim-indent-guides'
|
Plug 'nathanaelkane/vim-indent-guides'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user