split the ansible agnostic packages installation into cli and gui packages
This commit is contained in:
parent
34ddb9c568
commit
d497490285
3 changed files with 29 additions and 3 deletions
|
|
@ -14,4 +14,6 @@
|
||||||
- app/com.nextcloud.desktopclient.nextcloud/x86_64/stable
|
- app/com.nextcloud.desktopclient.nextcloud/x86_64/stable
|
||||||
- net.lutris.Lutris
|
- net.lutris.Lutris
|
||||||
- io.github.diegoivanme.flowtime
|
- io.github.diegoivanme.flowtime
|
||||||
|
- org.gnome.Decibels
|
||||||
|
- net.davidotek.pupgui2
|
||||||
method: "user"
|
method: "user"
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
- name: Install os-agnostic packages
|
- name: Install CLI os-agnostic packages
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.package:
|
ansible.builtin.package:
|
||||||
name:
|
name:
|
||||||
|
|
@ -8,13 +8,24 @@
|
||||||
- fish
|
- fish
|
||||||
- rofi
|
- rofi
|
||||||
- automake
|
- automake
|
||||||
- libtool
|
|
||||||
- mpv
|
|
||||||
- ncdu
|
- ncdu
|
||||||
- xclip
|
- xclip
|
||||||
state: present
|
state: present
|
||||||
tags:
|
tags:
|
||||||
- agnostic
|
- agnostic
|
||||||
|
- cli
|
||||||
|
|
||||||
|
- name: Install GUI os-agnostic packages
|
||||||
|
become: true
|
||||||
|
ansible.builtin.package:
|
||||||
|
name:
|
||||||
|
- mpv
|
||||||
|
- rofi
|
||||||
|
state: present
|
||||||
|
tags:
|
||||||
|
- agnostic
|
||||||
|
- gui
|
||||||
|
|
||||||
|
|
||||||
- name: Install Arch packages
|
- name: Install Arch packages
|
||||||
when: ansible_os_family == "Archlinux"
|
when: ansible_os_family == "Archlinux"
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,19 @@ function envsource
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function envunset
|
||||||
|
if not set -q argv[1]
|
||||||
|
set argv[1] ".env"
|
||||||
|
end
|
||||||
|
|
||||||
|
echo "Using $argv[1] as input file"
|
||||||
|
|
||||||
|
for line in (grep -v '^\s*\(#\|$\)' $argv[1] | grep -E '^[A-Za-z_]+=[^#\n]+')
|
||||||
|
set item (string split -m 1 '=' $line)
|
||||||
|
set -e $item[1]
|
||||||
|
echo "key $item[1] unset"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
function gen-secret
|
function gen-secret
|
||||||
if not set -q argv[1]
|
if not set -q argv[1]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue