Update gtk2 theme

* Fix progressbar and scales background color
* Fix treeview separator color
This commit is contained in:
EliverLara
2019-12-09 11:08:33 -06:00
parent b8e8b7d723
commit abbe752a25
37 changed files with 139 additions and 122 deletions

13
gtk-2.0/links.fish Normal file
View File

@@ -0,0 +1,13 @@
set -l files 'checkbox' 'radio'
set -l states 'unchecked' 'checked' 'mixed'
set -l sub_states 'active' 'hover' 'insensitive'
for f in $files;
for s in $states;
ln -sf ../../assets/$f-$s.png ./assets/$f-$s.png
for i in $sub_states;
ln -sf ../../assets/$f-$s-$i.png ./assets/$f-$s-$i.png
;end
;end
;end