diff --git a/configs.yml b/configs.yml
index b06a985..7c63540 100644
--- a/configs.yml
+++ b/configs.yml
@@ -25,21 +25,6 @@ mariadb:
command: sudo mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql && sudo systemctl start mysqld.service && sudo mysql_secure_installation
condition: "sudo find /var/lib/mysql -mindepth 1 | read"
-markdown viewer:
- - write:
- - ~/.local/share/mime/packages/text-markdown.xml
- - |
-
-
-
-
-
-
-
-
- - run:
- - update-mime-database ~/.local/share/mime
-
rust:
- run:
command: rustup self uninstall
diff --git a/playbook.yml b/playbook.yml
index 91d2a4f..51df890 100644
--- a/playbook.yml
+++ b/playbook.yml
@@ -15,6 +15,7 @@
- { role: pacman, tags: [pacman, pacman.conf] }
- { role: grub, tags: grub }
- { role: firefox, tags: firefox }
+ - { role: markdown, tags: markdown }
- { role: tor, tags: tor }
- { role: sudoers, tags: sudoers }
- { role: lilypond, tags: lilypond }
diff --git a/roles/markdown/files/text-markdown.xml b/roles/markdown/files/text-markdown.xml
new file mode 100644
index 0000000..ca7e891
--- /dev/null
+++ b/roles/markdown/files/text-markdown.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/roles/markdown/handlers/main.yml b/roles/markdown/handlers/main.yml
new file mode 100644
index 0000000..7d40748
--- /dev/null
+++ b/roles/markdown/handlers/main.yml
@@ -0,0 +1,3 @@
+---
+- name: Update mime database
+ command: update-mime-database ~/.local/share/mime
diff --git a/roles/markdown/tasks/main.yml b/roles/markdown/tasks/main.yml
new file mode 100644
index 0000000..52caeee
--- /dev/null
+++ b/roles/markdown/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: Copy text-markdown.xml
+ copy:
+ src: text-markdown.xml
+ dest: ~/.local/share/mime/packages/text-markdown.xml
+ notify: Update mime database