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
#!/bin/bash | |
## ~/.local/bin/pacmeld | |
## Merge *.pacnew files with original configuration files | |
## requires pacman-contrib and meld | |
if [[ $(/usr/bin/pacdiff -o | /usr/bin/grep pacnew | /usr/bin/wc -l) == 0 ]]; then | |
echo " no .pacnew files found" | |
else | |
echo " .pacnew files found..." | |
# launch meld to merge file |
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
<?xml version="1.0" ?> | |
<jack_mixer geometry="807x507" paned_position="377" visible="True"> | |
<input_channel name="Mic" type="mono" volume="0.000000" balance="0.000000" out_mute="False" volume_midi_cc="11" balance_midi_cc="12" mute_midi_cc="13" solo_midi_cc="14"/> | |
<input_channel name="VOIP call" type="mono" volume="0.000000" balance="0.000000" out_mute="False" volume_midi_cc="15" balance_midi_cc="16" mute_midi_cc="17" solo_midi_cc="18"/> | |
<input_channel name="Music" type="stereo" volume="-15.000000" balance="0.000000" out_mute="False" volume_midi_cc="19" balance_midi_cc="20" mute_midi_cc="21" solo_midi_cc="22"/> | |
<output_channel name="LIVE" type="stereo" solo_buttons="true" prefader_channels="Music" color="rgb(102,0,0)" volume="0.000000" balance="0.000000" out_mute="False"/> | |
<output_channel name="VOIP out" type="stereo" muted_channels="VOIP call" color="rgb(0,0,102)" volume="0.000000" balance="0.000000" out_mute="False"/> | |
<output_channel name="Speaker" type="stereo" muted_channels="Mic|VOIP call" prefader_ch |