Add role markdown
This commit is contained in:
parent
72b240def6
commit
1eb3d120f8
5 changed files with 18 additions and 15 deletions
15
configs.yml
15
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
|
||||
- |
|
||||
<?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
|
||||
|
|
|
@ -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 }
|
||||
|
|
8
roles/markdown/files/text-markdown.xml
Normal file
8
roles/markdown/files/text-markdown.xml
Normal 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>
|
3
roles/markdown/handlers/main.yml
Normal file
3
roles/markdown/handlers/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
- name: Update mime database
|
||||
command: update-mime-database ~/.local/share/mime
|
6
roles/markdown/tasks/main.yml
Normal file
6
roles/markdown/tasks/main.yml
Normal 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
|
Loading…
Add table
Reference in a new issue