doctorfree / MusicPlayerPlus

Featureful ncurses based MPD client inspired by ncmpc with integration for Beets, spectrum visualization,Bandcamp/Soundcloud, asciimatics, cantata, and more
https://musicplayerplus.dev
MIT License
69 stars 1 forks source link

Manjaro not detected as Arch Linux #16

Closed JOJ0 closed 1 year ago

JOJ0 commented 1 year ago

Manjaro is not correctly detected as being an arch-like distro. I think it can be fixed like this in mppinit:

if [ -f /etc/os-release ]
then
  . /etc/os-release
  [ "${ID}" == "debian" ] || [ "${ID_LIKE}" == "debian" ] && debian=1
  [ "${ID}" == "arch" ] || [ "${ID_LIKE}" == "arch" ] && arch=1
  [ "${ID}" == "centos" ] && centos=1
  [ "${ID}" == "fedora" ] && fedora=1
else

Originally posted by @JOJ0 in https://github.com/doctorfree/MusicPlayerPlus/discussions/13#discussioncomment-4627962