Add role markdown

This commit is contained in:
flyingscorpio@clevo 2022-02-27 13:52:53 +01:00
parent 72b240def6
commit 1eb3d120f8
5 changed files with 18 additions and 15 deletions

View file

@ -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
- |
<?xml version="1.0"?>
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
<mime-type type="text/plain">
<glob pattern="*.md"/>
<glob pattern="*.mkd"/>
<glob pattern="*.markdown"/>
</mime-type>
</mime-info>
- run:
- update-mime-database ~/.local/share/mime
rust:
- run:
command: rustup self uninstall

View file

@ -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 }

View file

@ -0,0 +1,8 @@
<?xml version="1.0"?>
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
<mime-type type="text/plain">
<glob pattern="*.md"/>
<glob pattern="*.mkd"/>
<glob pattern="*.markdown"/>
</mime-type>
</mime-info>

View file

@ -0,0 +1,3 @@
---
- name: Update mime database
command: update-mime-database ~/.local/share/mime

View file

@ -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