mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
d31c50870d
Thu Jun 30 20:26:57 UTC 2016 Slackware 14.2 x86_64 stable is released! The long development cycle (the Linux community has lately been living in "interesting times", as they say) is finally behind us, and we're proud to announce the release of Slackware 14.2. The new release brings many updates and modern tools, has switched from udev to eudev (no systemd), and adds well over a hundred new packages to the system. Thanks to the team, the upstream developers, the dedicated Slackware community, and everyone else who pitched in to help make this release a reality. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. Have fun! :-)
91 lines
2.3 KiB
Diff
91 lines
2.3 KiB
Diff
--- shell-completion/bash/pulseaudio.orig 2015-02-13 00:10:35.000000000 +1000
|
|
+++ shell-completion/bash/pulseaudio 2015-09-12 11:09:36.948222926 +1000
|
|
@@ -1,39 +1,45 @@
|
|
#!/bin/bash
|
|
|
|
__cards () {
|
|
+ (pactl list cards short 2> /dev/null) |\
|
|
while IFS=$'\t' read idx name _; do
|
|
printf "%s %s\n" "$idx" "$name"
|
|
- done < <(pactl list cards short 2> /dev/null)
|
|
+ done
|
|
}
|
|
|
|
__sinks () {
|
|
+ (pactl list sinks short 2> /dev/null) |\
|
|
while IFS=$'\t' read _ name _ _ _; do
|
|
printf "%s\n" "$name"
|
|
- done < <(pactl list sinks short 2> /dev/null)
|
|
+ done
|
|
}
|
|
|
|
__sinks_idx () {
|
|
+ (pactl list sinks short 2> /dev/null) |\
|
|
while IFS=$'\t' read idx _ _ _ _; do
|
|
printf "%s\n" "$idx"
|
|
- done < <(pactl list sinks short 2> /dev/null)
|
|
+ done
|
|
}
|
|
|
|
__sources () {
|
|
+ (pactl list sources short 2> /dev/null) |\
|
|
while IFS=$'\t' read _ name _ _ _; do
|
|
printf "%s\n" "$name"
|
|
- done < <(pactl list sources short 2> /dev/null)
|
|
+ done
|
|
}
|
|
|
|
__sink_inputs () {
|
|
+ (pactl list sink-inputs short 2> /dev/null) |\
|
|
while IFS=$'\t' read idx _ _ _ _; do
|
|
printf "%s\n" "$idx"
|
|
- done < <(pactl list sink-inputs short 2> /dev/null)
|
|
+ done
|
|
}
|
|
|
|
__source_outputs () {
|
|
+ (pactl list source-outputs short 2> /dev/null) |\
|
|
while IFS=$'\t' read idx _ _ _ _; do
|
|
printf "%s\n" "$idx"
|
|
- done < <(pactl list source-outputs short 2> /dev/null)
|
|
+ done
|
|
}
|
|
|
|
__ports () {
|
|
@@ -77,28 +83,32 @@
|
|
}
|
|
|
|
__all_modules () {
|
|
+ (pulseaudio --dump-modules 2> /dev/null) |\
|
|
while read name; do
|
|
name=${name%% *}
|
|
printf "%s\n" "$name"
|
|
- done < <(pulseaudio --dump-modules 2> /dev/null)
|
|
+ done
|
|
}
|
|
|
|
__loaded_modules () {
|
|
+ (pactl list modules short 2> /dev/null) |\
|
|
while IFS=$'\t' read idx name _; do
|
|
printf "%s %s\n" "$idx" "$name"
|
|
- done < <(pactl list modules short 2> /dev/null)
|
|
+ done
|
|
}
|
|
|
|
__resample_methods () {
|
|
+ (pulseaudio --dump-resample-methods 2> /dev/null) |\
|
|
while read name; do
|
|
printf "%s\n" "$name"
|
|
- done < <(pulseaudio --dump-resample-methods 2> /dev/null)
|
|
+ done
|
|
}
|
|
|
|
_pacat_file_formats () {
|
|
+ (pacat --list-file-formats 2> /dev/null) |\
|
|
while IFS=$'\t' read name _; do
|
|
printf "%s\n" "$name"
|
|
- done < <(pacat --list-file-formats 2> /dev/null)
|
|
+ done
|
|
}
|
|
|
|
in_array() {
|