General Enhancements (#51)

* Fix website not being trashed during reseed.

* Fix port flags.

* Fix errors about comments by being sneaky.

* Add `encfs`.

* Leave the audio alone when compressing videos unless explicitly requested.

* ffmpeg seems to default to 128k audio, raise it to 192k.

* Handle `time` not being installed more gracefully.

* Add audio normlization per Cahlen Lee.

* Try preventing directories from being renamed.

* Add ability to resize videos, similar to process-video in my Termux project's bashrc.

* Add an -A parameter similar to compress_image.sh.

* Handle uppercase extensions, use TRASH for old compressed copies if it exists, print the FFMPEG command.

* Add datestamps around the conversion.

* Maxrate has been working well in Termux project, use it on desktop too, but don't worry about 2-pass.

* Automatically source Docker environment for using manage.sh if user is root and file exists.

* Add android studio.

* Add missing pipes.

* Stop including Nix, inclue TTT, add git stash to reset.
This commit is contained in:
2024-05-16 10:00:49 -07:00
committed by GitHub
parent 04a980a7a3
commit 742f225de1
8 changed files with 95 additions and 34 deletions

View File

@ -20,6 +20,7 @@
microcode_amd: amd64-microcode
microcode_intel: intel-microcode
cron: cron
encfs: encfs
when: ansible_pkg_mgr == "apt"
- name: General | Facts | Package | pacman
@ -29,6 +30,7 @@
microcode_amd: linux-firmware
microcode_intel: intel-ucode
cron: cronie
encfs: encfs
when: ansible_pkg_mgr == "pacman"
- name: General | Facts | Package | FreeBSD
@ -40,6 +42,7 @@
tar: htop # tar already provided in FreeBSD
microcode_amd: htop # TODO
microcode_intel: htop # TODO
encfs: fusefs-encfs
when: ansible_system == "FreeBSD"
- name: General | Facts | Package | dnf
@ -50,6 +53,7 @@
microcode_amd: microcode_ctl
microcode_intel: microcode_ctl
cron: cronie
encfs: fuse-encfs
when: ansible_pkg_mgr == "dnf"
- name: General | Facts | Package | zypper
@ -59,6 +63,7 @@
microcode_amd: ucode-amd
microcode_intel: ucode-intel
cron: cronie
encfs: encfs
when: ansible_pkg_mgr == "zypper"