Skip to content

Instantly share code, notes, and snippets.

@unoexperto
Created November 15, 2022 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unoexperto/9262dbbee0270223cbf1e3843f6a159d to your computer and use it in GitHub Desktop.
Save unoexperto/9262dbbee0270223cbf1e3843f6a159d to your computer and use it in GitHub Desktop.
#!/usr/bin/bash
# REMOVES ibus from Zoom installer.
curl -L 'https://us05web.zoom.us/client/latest/zoom_amd64.deb' > zoom_amd64.deb
rm -r ./zoom/
mkdir zoom
cd zoom
pwd
#ls -ls ./../
ar xf ./../zoom_amd64.deb
mkdir control
cd control
tar -xf ./../control.tar.xz
sed -i 's/ibus, //g' control
tar c control md5sums postinst postrm | xz -c > ./../control.tar.xz
cd ..
ar rcs ./../zoom_patched.deb debian-binary control.tar.xz data.tar.xz
cd ..
rm -r ./zoom/
rm zoom_amd64.deb
sudo apt install ./zoom_patched.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment