summaryrefslogtreecommitdiff
path: root/tools/dev_env_setup/playbooks/create_eos_app_shortcuts.yaml
blob: 3776298e7578356520514c33afb2449c7c74609f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
# vim:ff=unix ts=2 sw=2 ai expandtab

- name: "Setting default personality"
  shell: executable=/bin/bash eos-select-personality default

- name: "Creating ~/.local/share/applications directory"
  file: path=~/.local/share/applications state=directory
  sudo: False

- name: "Creating EOS links for various apps"
  shell: cp /usr/share/applications/$item.desktop ~/.local/share/applications/eos-app-$item.desktop
  with_items:
    - gnome-terminal
    - devhelp
  sudo: False