소스 검색

[+] Get command path in package resource

Azalea (on HyDEV-Daisy) 3 년 전
부모
커밋
9dce0d9667
2개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 13 0
      hyfetch/neofetch_util.py
  2. 1 0
      hyfetch/scripts/neofetch_mod.sh

+ 13 - 0
hyfetch/neofetch_util.py

@@ -0,0 +1,13 @@
+import os
+from subprocess import check_output
+
+import pkg_resources
+
+
+def get_command_path() -> str:
+    """
+    Get the absolute path of the neofetch command
+
+    :return: Command path
+    """
+    return pkg_resources.resource_filename(__name__, 'scripts/neofetch_mod.sh')

+ 1 - 0
hyfetch/scripts/neofetch_mod.sh

@@ -0,0 +1 @@
+../../neofetch