Compare commits

...

7 Commits

Author SHA1 Message Date
Azalea (on HyDEV-Daisy) 7bb049ea20 [U] Release v1.0.5 2022-04-25 03:23:50 -04:00
Hykilpikonna 73becf78c4 [U] Update changelog 2022-04-25 03:22:54 -04:00
Hykilpikonna 7f949fe6b2 [PR] #2 coloursofnoise - Fix terminal emulator detection
Fix terminal emulator detection
2022-04-25 03:21:51 -04:00
coloursofnoise 9abdae5fb4 Fix terminal emulator detection 2022-04-20 13:03:07 -07:00
Azalea (on HyDEV-Daisy) 6ff45d0edd [+] Add AUR package 2022-04-16 00:45:15 -04:00
Hykilpikonna 99f99efc1c [U] Link pull request 2022-04-14 19:35:58 -04:00
Azalea (on HyDEV-Daisy) 0c08b3950f [U] Update changelog 2022-04-14 19:34:48 -04:00
3 changed files with 19 additions and 2 deletions
+17
View File
@@ -6,12 +6,21 @@ neofetch with pride flags <3
## Installation
### Method 1: Install using Python pip (Recommended)
Install Python >= 3.7 first. Then, just do:
```sh
pip install hyfetch
```
### Method 2: Install using system package manager
Currently, these distributions have existing packages for HyFetch:
* ArchLinux: `yay -S hyfetch` (Thanks to @ Aleksana)
* Guix: [In progress](https://issues.guix.gnu.org/54847#8-lineno27)
## Usage
When you run `hyfetch` for the first time, it will prompt you to choose a color system and a preset. Just follow the prompt, and everything should work (hopefully). If something doesn't work, feel free to submit an issue!
@@ -39,6 +48,14 @@ Feel free to experiment with it!
* [ ] Add interactive configurator for adjusting brightness
* [ ] Add configuration to emphasize certain parts of the original ASCII art (to make icons like Fedora and Ubuntu look nicer)
### 1.0.5
* Fix terminal emulator detection ([PR #2](https://github.com/hykilpikonna/hyfetch/pull/2))
### 1.0.4
* Add more flags ([PR #1](https://github.com/hykilpikonna/hyfetch/pull/1))
### 1.0.3
* Fix missing dependency for setuptools
+1 -1
View File
@@ -2,7 +2,7 @@ from __future__ import annotations
from . import main
__version__ = '1.0.4'
__version__ = '1.0.5'
if __name__ == '__main__':
+1 -1
View File
@@ -3315,7 +3315,7 @@ get_term() {
name="$(get_process_name "$parent")"
case ${name// } in
"${SHELL/*\/}"|*"sh"|"screen"|"su"*|"newgrp") ;;
"${SHELL/*\/}"|*"sh"|"screen"|"su"*|"newgrp"|"hyfetch") ;;
"login"*|*"Login"*|"init"|"(init)")
term="$(tty)"