diff options
author | Robin Krahl <me@robin-krahl.de> | 2019-01-21 23:57:49 +0100 |
---|---|---|
committer | Robin Krahl <me@robin-krahl.de> | 2019-01-21 23:57:49 +0100 |
commit | d317fb63e6934b132dbcdb788002f8765145caf4 (patch) | |
tree | 38b126c9e32bd4bbca6103480538f178111d0171 /config-desktop/tasks | |
parent | 2c76c684f975c57cd631d2e1afd3e6ef5f3d51f3 (diff) | |
download | ansible-roles-d317fb63e6934b132dbcdb788002f8765145caf4.tar.gz ansible-roles-d317fb63e6934b132dbcdb788002f8765145caf4.tar.bz2 |
Add config-desktop with dotfiles for desktop
Diffstat (limited to 'config-desktop/tasks')
-rw-r--r-- | config-desktop/tasks/main.yaml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config-desktop/tasks/main.yaml b/config-desktop/tasks/main.yaml new file mode 100644 index 0000000..48b6c6a --- /dev/null +++ b/config-desktop/tasks/main.yaml @@ -0,0 +1,15 @@ +--- +- name: Apply dotfiles + command: "stow --target /home/{{ user_name }}/ --dir /home/{{ user_name }}/.local/share/dotfiles {{ item }}" + with_items: + - dunst + - i3 + - i3status + - latexmk + - less + - mailcap + - notmuch + - pass + - ssh + - x + - xdg-user-dirs |