suppress warning and precreate ~/.local/share/applications
parent
da05c2d7eb
commit
d17e72af17
|
@ -31,6 +31,8 @@
|
|||
line: "10.4.21.230 git.lxd.consolo.lan"
|
||||
- name: add docker-ce pubkey
|
||||
shell: curl -sL "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x7EA0A9C3F273FCD8" | sudo apt-key add
|
||||
args:
|
||||
warn: False
|
||||
- name: add docker-ce repo
|
||||
apt_repository:
|
||||
repo: "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
|
||||
|
@ -38,6 +40,8 @@
|
|||
update_cache: true
|
||||
- name: add nextcloud pubkey
|
||||
shell: curl -sL "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x60EE47FBAD3DD469" | sudo apt-key add
|
||||
args:
|
||||
warn: False
|
||||
- name: add nextcloud repo
|
||||
apt_repository:
|
||||
repo: "deb http://ppa.launchpad.net/nextcloud-devs/client/ubuntu bionic main"
|
||||
|
@ -126,7 +130,7 @@
|
|||
creates: ~/.kiex/elixirs/elixir-1.7.4
|
||||
- name: install kitty terminal emulator
|
||||
become: no
|
||||
shell: curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin launch=n && ln -s ~/.local/kitty.app/bin/kitty ~/bin/ && cp ~/.local/kitty.app/share/applications/kitty.desktop ~/.local/share/applications && sed -i "s/Icon\=kitty/Icon\=\/home\/$USER\/.local\/kitty.app\/share\/icons\/hicolor\/256x256\/apps\/kitty.png/g" ~/.local/share/applications/kitty.desktop
|
||||
shell: curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin launch=n && ln -s ~/.local/kitty.app/bin/kitty ~/bin/ && mkdir -p ~/.local/share/applications && cp ~/.local/kitty.app/share/applications/kitty.desktop ~/.local/share/applications && sed -i "s/Icon\=kitty/Icon\=\/home\/$USER\/.local\/kitty.app\/share\/icons\/hicolor\/256x256\/apps\/kitty.png/g" ~/.local/share/applications/kitty.desktop
|
||||
args:
|
||||
warn: False
|
||||
creates: ~/bin/kitty
|
||||
|
|
Reference in New Issue