This repository has been archived on 2024-05-06. You can view files and clone it, but cannot push or open issues or pull requests.
gtk-nova-theme/gtk-2.0/links.fish
2021-01-07 18:44:37 +00:00

14 lines
314 B
Fish

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