Goodbye Google Browsers, Enhance Compress Video Script (#45)
* No longer favoriting Chromium-based browsers. Need to help reduce their marketshare before they make the Internet into proprietary DRM garbage. * Handle files with spaces. This is not the original author date.
This commit is contained in:
parent
4890d250f4
commit
046e767635
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
DIR=`dirname $0`
|
DIR=`dirname $0`
|
||||||
PROG=`basename $0`
|
PROG=`basename $0`
|
||||||
if [[ $DIR == '.' ]]; then
|
if [[ "$DIR" == '.' ]]; then
|
||||||
DIR=`pwd`
|
DIR=`pwd`
|
||||||
fi
|
fi
|
||||||
echo "Running $DIR/$PROG"
|
echo "Running $DIR/$PROG"
|
||||||
@ -13,13 +13,13 @@ echo "Running $DIR/$PROG"
|
|||||||
|
|
||||||
function usage {
|
function usage {
|
||||||
echo "Usage: $PROG [-i file/folder] [-v bitrate] [-a bitrate] [-c vcodec] [-r] [-f] [-m] [-V] [-x] [-h]"
|
echo "Usage: $PROG [-i file/folder] [-v bitrate] [-a bitrate] [-c vcodec] [-r] [-f] [-m] [-V] [-x] [-h]"
|
||||||
cat <<- EOF
|
cat <<- EOF
|
||||||
Reduce the filesize of a video file to make it stream well. It also
|
Reduce the filesize of a video file to make it stream well. It also
|
||||||
helps with the file size for placing the file into a backup system.
|
helps with the file size for placing the file into a backup system.
|
||||||
Currently only set up for mp4 files.
|
Currently only set up for mp4 files.
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
-i input : The input file or folder with which to search for video files.
|
-i input : The input file or folder with which to search for video files.
|
||||||
If nothing is provided, current directory (.) is assumed.
|
If nothing is provided, current directory (.) is assumed.
|
||||||
-v bitrate : The video bitrate to convert to, defaults to 2000k.
|
-v bitrate : The video bitrate to convert to, defaults to 2000k.
|
||||||
-a bitrate : The audio bitrate to convert to, defaults to 128k.
|
-a bitrate : The audio bitrate to convert to, defaults to 128k.
|
||||||
@ -64,7 +64,7 @@ while getopts ":i:v:a:c:rfmVxh" opt; do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
if [[ $set_x == "Y" ]]; then
|
if [[ "$set_x" == "Y" ]]; then
|
||||||
set -x
|
set -x
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -73,23 +73,23 @@ if [[ -z "$input" ]]; then
|
|||||||
input="."
|
input="."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z $video_bitrate ]]; then
|
if [[ -z "$video_bitrate" ]]; then
|
||||||
video_bitrate="2000k"
|
video_bitrate="2000k"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z $audio_bitrate ]]; then
|
if [[ -z "$audio_bitrate" ]]; then
|
||||||
audio_bitrate="128k"
|
audio_bitrate="128k"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z $codec ]]; then
|
if [[ -z "$codec" ]]; then
|
||||||
codec=""
|
codec=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z $search_command ]]; then
|
if [[ -z "$search_command" ]]; then
|
||||||
search_command="ls"
|
search_command="ls"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z $time_command ]]; then
|
if [[ -z "$time_command" ]]; then
|
||||||
time_command=""
|
time_command=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -100,7 +100,7 @@ date_YYYYMMDD="`date "+%Y%m%d"`"
|
|||||||
|
|
||||||
## Main ##
|
## Main ##
|
||||||
|
|
||||||
if [[ $verbose == "Y" ]]; then
|
if [[ "$verbose" == "Y" ]]; then
|
||||||
cat <<- EOF
|
cat <<- EOF
|
||||||
VERBOSE: Full list of variables.
|
VERBOSE: Full list of variables.
|
||||||
input='$input'
|
input='$input'
|
||||||
@ -122,29 +122,32 @@ SECONDS=0
|
|||||||
$search_command $input | sort | while read file; do
|
$search_command $input | sort | while read file; do
|
||||||
echo -e "\n$file"
|
echo -e "\n$file"
|
||||||
|
|
||||||
if [[ -n $time_command ]]; then
|
if [[ -n "$time_command" ]]; then
|
||||||
date
|
date
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Exception checks for the existing file.
|
# Exception checks for the existing file.
|
||||||
if [[ $file != *'.mp4' ]]; then
|
if [[ "$file" != *'.mp4' ]]; then
|
||||||
echo "SKIP: Not an MP4."
|
echo "SKIP: Not an MP4."
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
if [[ $file == *"$filename_flag"* ]]; then
|
if [[ "$file" == *"$filename_flag"* ]]; then
|
||||||
echo "SKIP: Input is already compressed."
|
echo "SKIP: Input is already compressed."
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Build the new filename to signify it is different thn the original.
|
# Build the new filename to signify it is different than the original.
|
||||||
extension=${file##*.}
|
extension="${file##*.}"
|
||||||
newfile=${file//$extension/$filename_flag-$date_YYYYMMDD.$extension}
|
newfile="${file//$extension/$filename_flag-$date_YYYYMMDD.$extension}"
|
||||||
|
|
||||||
|
# Convert spaces to underscores.
|
||||||
|
newfile="${newfile// /_}"
|
||||||
|
|
||||||
# More exception checks based on the new file.
|
# More exception checks based on the new file.
|
||||||
if [[ -e $newfile ]]; then
|
if [[ -e "$newfile" ]]; then
|
||||||
if [[ $force == "Y" ]]; then
|
if [[ "$force" == "Y" ]]; then
|
||||||
echo "FORCE: Removing $newfile."
|
echo "FORCE: Removing $newfile."
|
||||||
rm -vf $newfile
|
rm -vf "$newfile"
|
||||||
else
|
else
|
||||||
echo "SKIP: Already has a compressed version ($newfile)."
|
echo "SKIP: Already has a compressed version ($newfile)."
|
||||||
continue
|
continue
|
||||||
@ -154,14 +157,14 @@ $search_command $input | sort | while read file; do
|
|||||||
# Convert the file.
|
# Convert the file.
|
||||||
echo "Converting to $newfile."
|
echo "Converting to $newfile."
|
||||||
$time_command bash -c "ffmpeg -nostdin -hide_banner -loglevel quiet \
|
$time_command bash -c "ffmpeg -nostdin -hide_banner -loglevel quiet \
|
||||||
-i $file -b:v $video_bitrate -b:a $audio_bitrate \
|
-i '$file' -b:v $video_bitrate -b:a $audio_bitrate \
|
||||||
$vcodec -movflags +faststart $newfile"
|
$vcodec -movflags +faststart $newfile"
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "\nDone!"
|
echo "\nDone!"
|
||||||
|
|
||||||
# Display elapsed time
|
# Display elapsed time
|
||||||
if [[ -n $time_command ]]; then
|
if [[ -n "$time_command" ]]; then
|
||||||
typeset -i hours minutes seconds
|
typeset -i hours minutes seconds
|
||||||
hours=$(( SECONDS / 3600 ))
|
hours=$(( SECONDS / 3600 ))
|
||||||
minutes=$(( (SECONDS % 3600) / 60 ))
|
minutes=$(( (SECONDS % 3600) / 60 ))
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
# Make sure Gnome-Tweaks is installed
|
# Make sure Gnome-Tweaks is installed
|
||||||
- name: Workstation | Account Management | GNOME | Install Dependencies
|
- name: Workstation | Account Management | GNOME | Install Dependencies
|
||||||
package:
|
package:
|
||||||
name:
|
name:
|
||||||
- "{{ gnome_tweaks }}"
|
- "{{ gnome_tweaks }}"
|
||||||
- "{{ dconf_editor }}"
|
- "{{ dconf_editor }}"
|
||||||
- "{{ psutil }}"
|
- "{{ psutil }}"
|
||||||
@ -48,11 +48,11 @@
|
|||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
register: dash_to_dock_exists
|
register: dash_to_dock_exists
|
||||||
|
|
||||||
# Install #
|
# Install #
|
||||||
# https://micheleg.github.io/dash-to-dock/download.html
|
# https://micheleg.github.io/dash-to-dock/download.html
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Dash To Dock | Install | Clone Repo
|
- name: Workstation | Account Management | GNOME | Dash To Dock | Install | Clone Repo
|
||||||
git:
|
git:
|
||||||
repo: https://github.com/micheleg/dash-to-dock.git
|
repo: https://github.com/micheleg/dash-to-dock.git
|
||||||
dest: "~/TRASH/dash-to-dock/"
|
dest: "~/TRASH/dash-to-dock/"
|
||||||
clone: yes
|
clone: yes
|
||||||
@ -63,7 +63,7 @@
|
|||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Dash To Dock | Install | Dependencies
|
- name: Workstation | Account Management | GNOME | Dash To Dock | Install | Dependencies
|
||||||
package:
|
package:
|
||||||
name:
|
name:
|
||||||
- "{{ make }}"
|
- "{{ make }}"
|
||||||
- "{{ msgfmt }}"
|
- "{{ msgfmt }}"
|
||||||
- "{{ sassc }}"
|
- "{{ sassc }}"
|
||||||
@ -76,7 +76,7 @@
|
|||||||
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed
|
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Dash To Dock | Read Enabled Extension Array
|
- name: Workstation | Account Management | GNOME | Dash To Dock | Read Enabled Extension Array
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/shell/enabled-extensions
|
key: /org/gnome/shell/enabled-extensions
|
||||||
state: read
|
state: read
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
@ -91,7 +91,7 @@
|
|||||||
# https://ansible-docs.readthedocs.io/zh/stable-2.0/rst/playbooks_filters.html#filters-for-formatting-data
|
# https://ansible-docs.readthedocs.io/zh/stable-2.0/rst/playbooks_filters.html#filters-for-formatting-data
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Dash To Dock | Variables 1
|
- name: Workstation | Account Management | GNOME | Dash To Dock | Variables 1
|
||||||
set_fact:
|
set_fact:
|
||||||
gnome_enabled_extensions: "{{ gnome_enabled_extensions.value | replace('@as ', '') }}"
|
gnome_enabled_extensions: "{{ gnome_enabled_extensions.value | replace('@as ', '') }}"
|
||||||
dash_to_dock_ext_comma: ""
|
dash_to_dock_ext_comma: ""
|
||||||
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed
|
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed
|
||||||
@ -102,12 +102,12 @@
|
|||||||
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed
|
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Dash To Dock | Variables 2
|
- name: Workstation | Account Management | GNOME | Dash To Dock | Variables 2
|
||||||
set_fact:
|
set_fact:
|
||||||
dash_to_dock_ext_comma: ", "
|
dash_to_dock_ext_comma: ", "
|
||||||
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed and gnome_enabled_extensions not in ("[]", [], "None")
|
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed and gnome_enabled_extensions not in ("[]", [], "None")
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Dash To Dock | Variables 3
|
- name: Workstation | Account Management | GNOME | Dash To Dock | Variables 3
|
||||||
set_fact:
|
set_fact:
|
||||||
dash_to_dock_ext_name: "{{ dash_to_dock_ext_comma }}'dash-to-dock@micxgx.gmail.com']"
|
dash_to_dock_ext_name: "{{ dash_to_dock_ext_comma }}'dash-to-dock@micxgx.gmail.com']"
|
||||||
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed
|
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed
|
||||||
|
|
||||||
@ -132,7 +132,7 @@
|
|||||||
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed
|
when: ansible_distribution not in ("Ubuntu") and dash_to_dock_exists.failed
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Dash To Dock | Enable
|
- name: Workstation | Account Management | GNOME | Dash To Dock | Enable
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/shell/enabled-extensions
|
key: /org/gnome/shell/enabled-extensions
|
||||||
value: "{{ gnome_enabled_extensions | replace(']', dash_to_dock_ext_name) }}"
|
value: "{{ gnome_enabled_extensions | replace(']', dash_to_dock_ext_name) }}"
|
||||||
state: present
|
state: present
|
||||||
@ -142,34 +142,34 @@
|
|||||||
# Settings #
|
# Settings #
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Dash To Dock | Dock Position
|
- name: Workstation | Account Management | GNOME | Dash To Dock | Dock Position
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/shell/extensions/dash-to-dock/dock-position
|
key: /org/gnome/shell/extensions/dash-to-dock/dock-position
|
||||||
value: "'LEFT'"
|
value: "'LEFT'"
|
||||||
state: present
|
state: present
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Dash To Dock | Dock Fixed
|
- name: Workstation | Account Management | GNOME | Dash To Dock | Dock Fixed
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/shell/extensions/dash-to-dock/dock-fixed
|
key: /org/gnome/shell/extensions/dash-to-dock/dock-fixed
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Dash To Dock | Icon Size
|
- name: Workstation | Account Management | GNOME | Dash To Dock | Icon Size
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/shell/extensions/dash-to-dock/dash-max-icon-size
|
key: /org/gnome/shell/extensions/dash-to-dock/dash-max-icon-size
|
||||||
value: "28"
|
value: "28"
|
||||||
state: present
|
state: present
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
|
|
||||||
ignore_errors: yes
|
ignore_errors: yes
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME + Cinnamon | Favorites (Linux)
|
- name: Workstation | Account Management | GNOME + Cinnamon | Favorites (Linux)
|
||||||
dconf:
|
dconf:
|
||||||
key: "{{ item }}"
|
key: "{{ item }}"
|
||||||
value: "[ 'org.gnome.Terminal.desktop', 'gnome-system-monitor.desktop'
|
value: "[ 'org.gnome.Terminal.desktop', 'gnome-system-monitor.desktop'
|
||||||
, 'org.gnome.Nautilus.desktop'
|
, 'org.gnome.Nautilus.desktop'
|
||||||
, 'io.gitlab.librewolf-community.desktop', '{{ browser }}'
|
, 'io.gitlab.librewolf-community.desktop'
|
||||||
, 'org.gnome.Evolution.desktop', 'chat.delta.desktop.desktop'
|
, 'org.gnome.Evolution.desktop', 'chat.delta.desktop.desktop'
|
||||||
, 'com.vscodium.codium.desktop', 'org.shotcut.Shotcut.desktop'
|
, 'com.vscodium.codium.desktop', 'org.shotcut.Shotcut.desktop'
|
||||||
, 'io.lbry.lbry-app.desktop'
|
, 'io.lbry.lbry-app.desktop'
|
||||||
@ -182,18 +182,18 @@
|
|||||||
when: ansible_system == "Linux"
|
when: ansible_system == "Linux"
|
||||||
loop:
|
loop:
|
||||||
- /org/gnome/shell/favorite-apps
|
- /org/gnome/shell/favorite-apps
|
||||||
- /org/cinnamon/favorite-apps
|
- /org/cinnamon/favorite-apps
|
||||||
# As of 2023-07-01 this only sets the Menu Favorites on Cinnamon, not the
|
# As of 2023-07-01 this only sets the Menu Favorites on Cinnamon, not the
|
||||||
# Panel Pins. Cannot find any details online of where the pinned application
|
# Panel Pins. Cannot find any details online of where the pinned application
|
||||||
# data lives. Cloned and searched the linuxmint/cinnamon project too and
|
# data lives. Cloned and searched the linuxmint/cinnamon project too and
|
||||||
# couldn't find which function handles it. Leaving the loop for it but it's
|
# couldn't find which function handles it. Leaving the loop for it but it's
|
||||||
# not what was hoped for and is sort of a TBD/TODO.
|
# not what was hoped for and is sort of a TBD/TODO.
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Favorites (FreeBSD)
|
- name: Workstation | Account Management | GNOME | Favorites (FreeBSD)
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/shell/favorite-apps
|
key: /org/gnome/shell/favorite-apps
|
||||||
value: "['org.gnome.Terminal.desktop', 'org.gnome.Nautilus.desktop',
|
value: "['org.gnome.Terminal.desktop', 'org.gnome.Nautilus.desktop',
|
||||||
'firefox.desktop', 'org.gnome.Evolution.desktop', 'org.mozilla.Thunderbird.desktop',
|
'firefox.desktop', 'org.gnome.Evolution.desktop', 'org.mozilla.Thunderbird.desktop',
|
||||||
'code-oss.desktop', 'org.telegram.desktop.desktop']"
|
'code-oss.desktop', 'org.telegram.desktop.desktop']"
|
||||||
state: present
|
state: present
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
@ -204,42 +204,42 @@
|
|||||||
# (Battery Percentage, Clock Weekday+Seconds, Calendar Week Numbers)
|
# (Battery Percentage, Clock Weekday+Seconds, Calendar Week Numbers)
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Interface - Show Date
|
- name: Workstation | Account Management | GNOME | Interface - Show Date
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/interface/clock-show-date
|
key: /org/gnome/desktop/interface/clock-show-date
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Interface - 24h Format
|
- name: Workstation | Account Management | GNOME | Interface - 24h Format
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/interface/clock-format
|
key: /org/gnome/desktop/interface/clock-format
|
||||||
value: "'24h'"
|
value: "'24h'"
|
||||||
state: present
|
state: present
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Interface - Show Seconds
|
- name: Workstation | Account Management | GNOME | Interface - Show Seconds
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/interface/clock-show-seconds
|
key: /org/gnome/desktop/interface/clock-show-seconds
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Interface - Show Weekday
|
- name: Workstation | Account Management | GNOME | Interface - Show Weekday
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/interface/clock-show-weekday
|
key: /org/gnome/desktop/interface/clock-show-weekday
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Interface - 24h Format
|
- name: Workstation | Account Management | GNOME | Interface - 24h Format
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/interface/show-battery-percentage
|
key: /org/gnome/desktop/interface/show-battery-percentage
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Interface - Show Week Date
|
- name: Workstation | Account Management | GNOME | Interface - Show Week Date
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/calendar/show-weekdate
|
key: /org/gnome/desktop/calendar/show-weekdate
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
@ -258,8 +258,8 @@
|
|||||||
|
|
||||||
# Window Titlebars (Titlebar Buttons Minimize)
|
# Window Titlebars (Titlebar Buttons Minimize)
|
||||||
- name: Workstation | Account Management | GNOME | Window Buttons
|
- name: Workstation | Account Management | GNOME | Window Buttons
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/wm/preferences/button-layout
|
key: /org/gnome/desktop/wm/preferences/button-layout
|
||||||
value: "'appmenu:minimize,close'"
|
value: "'appmenu:minimize,close'"
|
||||||
state: present
|
state: present
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
@ -267,14 +267,14 @@
|
|||||||
|
|
||||||
# Security
|
# Security
|
||||||
- name: Workstation | Account Management | GNOME | Privacy - Camera
|
- name: Workstation | Account Management | GNOME | Privacy - Camera
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/privacy/disable-camera
|
key: /org/gnome/desktop/privacy/disable-camera
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
become_user: "{{ user }}"
|
become_user: "{{ user }}"
|
||||||
|
|
||||||
- name: Workstation | Account Management | GNOME | Privacy - Microphone
|
- name: Workstation | Account Management | GNOME | Privacy - Microphone
|
||||||
dconf:
|
dconf:
|
||||||
key: /org/gnome/desktop/privacy/disable-microphone
|
key: /org/gnome/desktop/privacy/disable-microphone
|
||||||
value: "true"
|
value: "true"
|
||||||
state: present
|
state: present
|
||||||
|
Loading…
x
Reference in New Issue
Block a user