mirror of https://github.com/aristocratos/bpytop
Fixed: Check for config in /usr/local/etc instead of /etc on BSD
parent
878abb5b06
commit
f5df9aa0cd
|
@ -520,7 +520,9 @@ class Config:
|
||||||
conf_file: str = ""
|
conf_file: str = ""
|
||||||
if os.path.isfile(self.config_file):
|
if os.path.isfile(self.config_file):
|
||||||
conf_file = self.config_file
|
conf_file = self.config_file
|
||||||
elif os.path.isfile("/etc/bpytop.conf"):
|
elif SYSTEM == "BSD" and os.path.isfile("/usr/local/etc/bpytop.conf"):
|
||||||
|
conf_file = "/usr/local/etc/bpytop.conf"
|
||||||
|
elif SYSTEM != "BSD" and os.path.isfile("/etc/bpytop.conf"):
|
||||||
conf_file = "/etc/bpytop.conf"
|
conf_file = "/etc/bpytop.conf"
|
||||||
else:
|
else:
|
||||||
return new_config
|
return new_config
|
||||||
|
|
Loading…
Reference in New Issue