Skip to content

Commit

Permalink
#354 prioritize pulseaudio before sndio
Browse files Browse the repository at this point in the history
on arch some people seem to have sndio installed but not pipewire. Therefore cava defaults to sndio.

#538
  • Loading branch information
karlstav authored Jan 29, 2024
1 parent 9b7dec4 commit a84e250
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ const char *default_shader_name[NUMBER_OF_SHADERS] = {"northern_lights.frag", "p
double smoothDef[5] = {1, 1, 1, 1, 1};

enum input_method default_methods[] = {
INPUT_FIFO, INPUT_PORTAUDIO, INPUT_ALSA, INPUT_PULSE, INPUT_JACK,
INPUT_SNDIO, INPUT_PIPEWIRE, INPUT_WINSCAP, INPUT_OSS,
INPUT_FIFO, INPUT_PORTAUDIO, INPUT_ALSA, INPUT_SNDIO, INPUT_JACK,
INPUT_PULSE, INPUT_PIPEWIRE, INPUT_WINSCAP, INPUT_OSS,
};

char *outputMethod, *orientation, *channels, *xaxisScale, *monoOption, *fragmentShader,
Expand Down

0 comments on commit a84e250

Please sign in to comment.