diff --git a/conf.d/fonts/FontAwesome5/.uuid b/conf.d/fonts/FontAwesome5/.uuid index ce16105..674d55d 100644 --- a/conf.d/fonts/FontAwesome5/.uuid +++ b/conf.d/fonts/FontAwesome5/.uuid @@ -1 +1 @@ -61eb4bc0-dbac-49a9-acf3-0a193db15581 \ No newline at end of file +61cfb34a-4754-4da2-848f-47182f39a2b5 \ No newline at end of file diff --git a/conf.d/fonts/InputMono/.uuid b/conf.d/fonts/InputMono/.uuid index bc14f48..f6dbbac 100644 --- a/conf.d/fonts/InputMono/.uuid +++ b/conf.d/fonts/InputMono/.uuid @@ -1 +1 @@ -33071052-02ea-418e-bed0-11b117c5b055 \ No newline at end of file +85422fd6-0767-4816-b1fd-9aafad5f968a \ No newline at end of file diff --git a/conf.d/fonts/icofont/css/.uuid b/conf.d/fonts/icofont/css/.uuid index 28585ac..531aac7 100644 --- a/conf.d/fonts/icofont/css/.uuid +++ b/conf.d/fonts/icofont/css/.uuid @@ -1 +1 @@ -b5811385-de1f-4ee1-a84b-47443493b940 \ No newline at end of file +b207becd-cd15-4998-88f7-a9168189ba41 \ No newline at end of file diff --git a/helpers/install_gtk-theme-collections.sh b/helpers/install_gtk-theme-collections.sh new file mode 100644 index 0000000..893715e --- /dev/null +++ b/helpers/install_gtk-theme-collections.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +GTK_THEMES_DIR="$HOME/.themes" + +if [[ ! -d "$GTK_THEMES_DIR" ]]; then + mkdir -p "$GTK_THEMES_DIR" +fi + +if [[ ! -d "$GTK_THEMES_DIR/gtk-theme-collections" ]]; then + git clone https://github.com/addy-dclxvi/gtk-theme-collections.git "$GTK_THEMES_DIR/gtk-theme-collections" +else + git -C "$GTK_THEMES_DIR/gtk-theme-collections" pull +fi + diff --git a/meta/tasks/gtk-theme-collections.yaml b/meta/tasks/gtk-theme-collections.yaml index 2ca3328..14cb71e 100644 --- a/meta/tasks/gtk-theme-collections.yaml +++ b/meta/tasks/gtk-theme-collections.yaml @@ -1,6 +1,6 @@ - shell: - - [ - git clone https://github.com/addy-dclxvi/gtk-theme-collections ~/.themes, - "Installing GTK themes." - ] - + - command: '/bin/bash -c helpers/install_gtk-theme-collections.sh' + description: Get GTK themes + stderr: true + stdout: true +