aboutsummaryrefslogtreecommitdiffstats
path: root/roles/linux_desktop/tasks/theme.yml
diff options
context:
space:
mode:
authorStonewall Jackson <stonewall@sacredheartsc.com>2023-04-18 21:23:22 -0400
committerStonewall Jackson <stonewall@sacredheartsc.com>2023-04-18 21:23:22 -0400
commit2b1725152bd372b1d2ca745da50a66e664e70cdb (patch)
treed83bcfecb12a4027c406f839c6ac5eab8b1431de /roles/linux_desktop/tasks/theme.yml
parent2170ae7fd8807682b3a0d29876af9f6a9ca71d57 (diff)
downloadselfhosted-2b1725152bd372b1d2ca745da50a66e664e70cdb.tar.gz
selfhosted-2b1725152bd372b1d2ca745da50a66e664e70cdb.zip
linux_desktop: switch to kde
Diffstat (limited to 'roles/linux_desktop/tasks/theme.yml')
-rw-r--r--roles/linux_desktop/tasks/theme.yml35
1 files changed, 0 insertions, 35 deletions
diff --git a/roles/linux_desktop/tasks/theme.yml b/roles/linux_desktop/tasks/theme.yml
deleted file mode 100644
index b497020..0000000
--- a/roles/linux_desktop/tasks/theme.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-- name: create qogir source directories
- file:
- path: '{{ item }}'
- state: directory
- loop:
- - '{{ linux_desktop_qogir_source_dir }}'
- - '{{ linux_desktop_qogir_icon_source_dir }}'
-
-- name: extract qogir tarball
- unarchive:
- src: '{{ linux_desktop_qogir_url }}'
- dest: '{{ linux_desktop_qogir_source_dir }}'
- remote_src: yes
- extra_opts:
- - --strip-components=1
- register: linux_desktop_qogir_unarchive
-
-- name: install qogir theme
- command:
- cmd: ./install.sh -d /usr/share/themes -t default
- chdir: '{{ linux_desktop_qogir_source_dir }}'
-
-- name: extract qogir icons tarball
- unarchive:
- src: '{{ linux_desktop_qogir_icon_url }}'
- dest: '{{ linux_desktop_qogir_icon_source_dir }}'
- remote_src: yes
- extra_opts:
- - --strip-components=1
- register: linux_desktop_qogir_icon_unarchive
-
-- name: install qogir icons
- command:
- cmd: ./install.sh -d /usr/share/icons -t default
- chdir: '{{ linux_desktop_qogir_icon_source_dir }}'