update
This commit is contained in:
parent
bde31a4934
commit
b35d35f3d5
@ -1,7 +1,7 @@
|
|||||||
[//]: # (Title: Nixy)
|
[//]: # (Title: Nixy)
|
||||||
[//]: # (Description: Nixy is a Hyprland NixOS configuration with home-manager, secrets and custom theming all in one place. It's a simple way to manage your system configuration and dotfiles.)
|
[//]: # (Description: Nixy is a Hyprland NixOS configuration with home-manager, secrets and custom theming all in one place. It's a simple way to manage your system configuration and dotfiles.)
|
||||||
[//]: # (Author: Hadi)
|
[//]: # (Author: Hadi)
|
||||||
[//]: # (Date: 06/26/24)
|
[//]: # (Date: 06/27/24)
|
||||||
[//]: # (Version: v2.0.1)
|
[//]: # (Version: v2.0.1)
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
@ -85,6 +85,8 @@ sudo nixos-rebuild switch --flake ~/.config/nixos#yourhostname
|
|||||||
- [THEMES.md](docs/THEMES.md): How themes work and how to create your own
|
- [THEMES.md](docs/THEMES.md): How themes work and how to create your own
|
||||||
- [APPS.md](docs/APPS.md): Which apps are installed
|
- [APPS.md](docs/APPS.md): Which apps are installed
|
||||||
- [SCRIPTS.md](docs/SCRIPTS.md): Scripts that are available
|
- [SCRIPTS.md](docs/SCRIPTS.md): Scripts that are available
|
||||||
|
- [KEYBINDINGS.md](docs/KEYBINDINGS.md): Keybindings available in Hyprland
|
||||||
|
|
||||||
- [TODO.md](docs/TODO.md): What's next (feel free to contribute)
|
- [TODO.md](docs/TODO.md): What's next (feel free to contribute)
|
||||||
- [CONTRIBUTING.md](docs/CONTRIBUTING.md): How to contribute
|
- [CONTRIBUTING.md](docs/CONTRIBUTING.md): How to contribute
|
||||||
- [LICENSE](LICENSE): MIT Licensey
|
- [LICENSE](LICENSE): MIT License
|
||||||
|
@ -8,7 +8,6 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
|
|||||||
- [ ] Themes
|
- [ ] Themes
|
||||||
- [ ] Upload new wallpapers
|
- [ ] Upload new wallpapers
|
||||||
- [ ] macOS theme
|
- [ ] macOS theme
|
||||||
- [ ] Write a hyprland shortcuts markdown file (Parse the hyprland settings conf)
|
|
||||||
- [ ] Tofi (Wofi, but terminal based)
|
- [ ] Tofi (Wofi, but terminal based)
|
||||||
- [ ] add golang bin dir to path
|
- [ ] add golang bin dir to path
|
||||||
|
|
||||||
|
@ -10,11 +10,15 @@ header=$(cat "./docs/src/header.md")
|
|||||||
table_of_content=$(md-table-of-contents ./docs/src/README_template.md) # https://github.com/anotherhadi/md-table-of-contents
|
table_of_content=$(md-table-of-contents ./docs/src/README_template.md) # https://github.com/anotherhadi/md-table-of-contents
|
||||||
version=$(git describe --tags --abbrev=0)
|
version=$(git describe --tags --abbrev=0)
|
||||||
readme_content=$(cat "./docs/src/README_template.md")
|
readme_content=$(cat "./docs/src/README_template.md")
|
||||||
|
description=$(curl -s https://api.github.com/repos/anotherhadi/nixy | jq .description)
|
||||||
|
description="${description%\"}"
|
||||||
|
description="${description#\"}"
|
||||||
|
|
||||||
header=${header//\{date\}/$(date '+%D')}
|
header=${header//\{date\}/$(date '+%D')}
|
||||||
header=${header//\{primarycolor\}/89b4fa}
|
header=${header//\{primarycolor\}/89b4fa}
|
||||||
header=${header//\{backgroundcolor\}/181825}
|
header=${header//\{backgroundcolor\}/181825}
|
||||||
header=${header//\{version\}/$version}
|
header=${header//\{version\}/$version}
|
||||||
|
header=${header//\{description\}/$description}
|
||||||
readme_content=${readme_content//\{md_table_of_content\}/$table_of_content}
|
readme_content=${readme_content//\{md_table_of_content\}/$table_of_content}
|
||||||
|
|
||||||
echo "$header" >"$README_FILE"
|
echo "$header" >"$README_FILE"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
[//]: # (Title: Nixy)
|
[//]: # (Title: Nixy)
|
||||||
[//]: # (Description: Nixy is a Hyprland NixOS configuration with home-manager, secrets and custom theming all in one place. It's a simple way to manage your system configuration and dotfiles.)
|
[//]: # (Description: {description})
|
||||||
[//]: # (Author: Hadi)
|
[//]: # (Author: Hadi)
|
||||||
[//]: # (Date: {date})
|
[//]: # (Date: {date})
|
||||||
[//]: # (Version: {version})
|
[//]: # (Version: {version})
|
||||||
|
Loading…
Reference in New Issue
Block a user