Add First Script - Video Compression (#40)
* Script is working well. Maybe not its final resting place but adding it to the repo here for now. * Add Signal to favorites after Delta Chat. * Fix the a and v parameters never being used. * New file to copy all scripts to /usr/local/bin/. * Call the new file which installs everything under files/scripts/.
This commit is contained in:
16
tasks/general/scripts/install.yml
Normal file
16
tasks/general/scripts/install.yml
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
# Copy everything from PROJECT/files/scripts/ to /usr/local/bin/.
|
||||
|
||||
- name: General | Scripts | Install | Ensure Directory Exists
|
||||
ansible.builtin.file:
|
||||
path: '{{ global_bin }}'
|
||||
state: directory
|
||||
mode: '0755'
|
||||
|
||||
- name: General | Scripts | Install | Copy Files
|
||||
copy:
|
||||
src: 'scripts/'
|
||||
dest: "{{ global_bin }}/"
|
||||
owner: root
|
||||
group: "{{ root_group }}"
|
||||
mode: '0755'
|
@ -167,13 +167,16 @@
|
||||
- name: Workstation | Account Management | GNOME | Favorites (Linux)
|
||||
dconf:
|
||||
key: /org/gnome/shell/favorite-apps
|
||||
value: "['org.gnome.Terminal.desktop', 'gnome-system-monitor.desktop', 'org.gnome.Nautilus.desktop'
|
||||
,'io.gitlab.librewolf-community.desktop', '{{ browser }}', 'org.gnome.Evolution.desktop'
|
||||
,'chat.delta.desktop.desktop'
|
||||
,'com.vscodium.codium.desktop', 'org.shotcut.Shotcut.desktop'
|
||||
,'org.telegram.desktop.desktop', 'com.discordapp.Discord.desktop', 'im.riot.Riot.desktop'
|
||||
,'io.lbry.lbry-app.desktop'
|
||||
,'com.valvesoftware.Steam.desktop'
|
||||
value: "[ 'org.gnome.Terminal.desktop', 'gnome-system-monitor.desktop'
|
||||
, 'org.gnome.Nautilus.desktop'
|
||||
, 'io.gitlab.librewolf-community.desktop', '{{ browser }}'
|
||||
, 'org.gnome.Evolution.desktop', 'chat.delta.desktop.desktop'
|
||||
, 'org.signal.Signal.desktop'
|
||||
, 'com.vscodium.codium.desktop', 'org.shotcut.Shotcut.desktop'
|
||||
, 'org.telegram.desktop.desktop', 'com.discordapp.Discord.desktop'
|
||||
, 'im.riot.Riot.desktop'
|
||||
, 'io.lbry.lbry-app.desktop'
|
||||
, 'com.valvesoftware.Steam.desktop'
|
||||
]"
|
||||
state: present
|
||||
become_user: "{{ user }}"
|
||||
|
Reference in New Issue
Block a user