Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7bb049ea20 | |||
| 73becf78c4 | |||
| 7f949fe6b2 | |||
| 9abdae5fb4 | |||
| 6ff45d0edd | |||
| 99f99efc1c | |||
| 0c08b3950f |
@@ -6,12 +6,21 @@ neofetch with pride flags <3
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
### Method 1: Install using Python pip (Recommended)
|
||||||
|
|
||||||
Install Python >= 3.7 first. Then, just do:
|
Install Python >= 3.7 first. Then, just do:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
pip install hyfetch
|
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
|
## 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!
|
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 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)
|
* [ ] 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
|
### 1.0.3
|
||||||
|
|
||||||
* Fix missing dependency for setuptools
|
* Fix missing dependency for setuptools
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@ from __future__ import annotations
|
|||||||
from . import main
|
from . import main
|
||||||
|
|
||||||
|
|
||||||
__version__ = '1.0.4'
|
__version__ = '1.0.5'
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -3315,7 +3315,7 @@ get_term() {
|
|||||||
name="$(get_process_name "$parent")"
|
name="$(get_process_name "$parent")"
|
||||||
|
|
||||||
case ${name// } in
|
case ${name// } in
|
||||||
"${SHELL/*\/}"|*"sh"|"screen"|"su"*|"newgrp") ;;
|
"${SHELL/*\/}"|*"sh"|"screen"|"su"*|"newgrp"|"hyfetch") ;;
|
||||||
|
|
||||||
"login"*|*"Login"*|"init"|"(init)")
|
"login"*|*"Login"*|"init"|"(init)")
|
||||||
term="$(tty)"
|
term="$(tty)"
|
||||||
|
|||||||
Reference in New Issue
Block a user