From 2f8d1b33091e700bb40680264e0fb578851eae47 Mon Sep 17 00:00:00 2001 From: "Eric D. Rohler" Date: Sat, 27 Apr 2019 11:36:22 -0400 Subject: [PATCH] added gtk.css install and removed ctrl+p from vim --- gtk.css | 30 ++++++++++++++++++++++++++++++ install.sh | 3 ++- vimrc | 2 +- 3 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 gtk.css diff --git a/gtk.css b/gtk.css new file mode 100644 index 0000000..0134a3f --- /dev/null +++ b/gtk.css @@ -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; +} diff --git a/install.sh b/install.sh index 3230c6d..8d2ec06 100755 --- a/install.sh +++ b/install.sh @@ -1,8 +1,9 @@ #!/usr/bin/bash -for f in $(ls --ignore="*.sh" --ignore="*.md") +for f in $(ls --ignore="*.sh" --ignore="*.md" --ignore="*.css") do # echo $f ln -s "$(pwd)/$f" "$HOME/.${f##*/}" done +ln -s "$(pwd)/gtk.css" "$HOME/.config/gtk-3.0/gtk.css" \ No newline at end of file diff --git a/vimrc b/vimrc index 6466a8d..c571518 100644 --- a/vimrc +++ b/vimrc @@ -79,7 +79,7 @@ Plug 'vim-syntastic/syntastic' " Editor Utils Plug 'tpope/vim-surround' -Plug 'ctrlpvim/ctrlp.vim' +" Plug 'ctrlpvim/ctrlp.vim' Plug 'mattn/emmet-vim' Plug 'nathanaelkane/vim-indent-guides'