Comments about the post Magit 2.5 released from the Emacsair blog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; -*- mode: emacs-lisp; coding: hebrew-iso-8bit-unix -*- | |
| ;; subtitles.el - work on .srt (subripper) subtitle files | |
| ;; Copyright (C) 2009 Ehud karni <ehud@xxxxxxxxxxxxxx> | |
| ;; This file is NOT part of GNU Emacs, distribution conditions below. | |
| ;; | |
| ;; EHUD KARNI ינרק דוהא | |
| ;; Ben Gurion st' 14 ןוירוג ןב 'חר | |
| ;; Kfar - Sava 44 257 אבס - רפכ | |
| ;; ================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'uri' | |
| def params_valid? | |
| lengthOkay = [2,3].include? ARGV.length | |
| revOkay = ARGV[0].to_i.to_s == ARGV[0] | |
| lengthOkay && revOkay | |
| end |
This guide is only for original Ubuntu out-of-the-box packages. If you have added a custom PPA like
pipewire-debian, you might get into conflicts.
Ubuntu 22.04 has PipeWire partially installed and enabled as it's used by browsers (WebRTC) for recoding the screeen under Wayland. We can enable remaining parts and use PipeWire for audio and Bluetooth instead of PulseAudio.
Starting from WirePlumber version 0.4.8 automatic Bluetooth profile switching (e.g. switching from A2DP to HSP/HFP when an application needs microphone access) is supported. Jammy (22.04) repos provide exactly version 0.4.8. So, we're good.
Based on Debian Wiki, but simplified for Ubuntu 22.04.