Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richard-austin/update-browser-desktop-files
Bash script to restore browser command line parameters after software updates
https://github.com/richard-austin/update-browser-desktop-files
bash browser linux linux-desktop
Last synced: 25 days ago
JSON representation
Bash script to restore browser command line parameters after software updates
- Host: GitHub
- URL: https://github.com/richard-austin/update-browser-desktop-files
- Owner: richard-austin
- License: mit
- Created: 2024-01-10T19:14:28.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-04-20T17:48:44.000Z (7 months ago)
- Last Synced: 2024-09-29T15:04:47.327Z (about 1 month ago)
- Topics: bash, browser, linux, linux-desktop
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# update-browser-desktop-files
#### Simple script to restore browser command line parameters after software update
I use Ubuntu 23.10 with VAAPI for hardware video decoding on my browsers. To enable hardware decoding in Chromium based
browsers on Linux, you need to add command line parameters ("--enable-features=VaapiVideoDecoder,VaapiVideoEncoder,VaapiVideoDecodeLinuxGL).
To make these permanent, you can put them at the end of lines starting with "Exec" in their .desktop filesThis is straightforward enough, but the problem is, whenever there is a software update to any of these browsers, its
.desktop file is overwritten so you have to do it again. After getting fed up with this, I decided to write this script.Run it and it will ensure that any Exec lines in the listed desktop files that don't end in the required
parameters will have them appended, Any that still do have them will be left alone. The updated file will be copied to
~/.local/share/applications where it will override the originally installed .desktop file. As it will be unaffected by
subsequent updates, the VAAPI parameters will survive them, but sometimes icon paths etc are changed in updates, which
would require this script to be re-run to take account of that.## Setting up
The desktopFiles array should contain the full paths of all the browser desktop files you want to be able to keep the
command line parameters on. Mine is :-```bash
declare -a desktopFiles=("/var/lib/snapd/desktop/applications/brave_brave.desktop"
"/var/lib/snapd/desktop/applications/chromium_chromium.desktop"
"/usr/share/applications/google-chrome-beta.desktop"
"/usr/share/applications/google-chrome.desktop"
"/usr/share/applications/microsoft-edge.desktop")
```
The params variable should be set to the parameters you want to ensure are appended to the Exec lines in the files.
For VAAPI video decoding and encoding this is :-```bash
params="--enable-features=VaapiVideoDecoder,VaapiVideoEncoder,VaapiVideoDecodeLinuxGL"
```
## Running
Run the script using your user account :-
```bash
./update-desktop-files.sh
```Thats it!