This commit is contained in:
Hadi 2024-06-25 09:49:11 +02:00 committed by GitHub
parent c0a0afd077
commit 4e5cdbbac5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 29 additions and 12 deletions

View File

@ -9,9 +9,7 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
- [ ] Upload new wallpapers
- [ ] MacOS theme
- [ ] GithubFetch: Neofetch like, github calendar in the terminal
- [ ] Night shift Toggle
- [ ] Write a hyprland shortcuts markdown file (Parse the hyprland settings conf)
- [ ] Lock script
- [ ] Tofi (Wofi but terminal based)
- [ ] Waybar

View File

@ -0,0 +1 @@
#!/usr/bin/env bash

View File

@ -1,10 +1,12 @@
# installation script...
#!/usr/bin/env bash
# check if on nixos
# check if ./hosts exist
# check if gum is installed (dependencie)
# save path
# remove .git
# git init and initial commit
# create custom configuration
# save it to ./hosts
# https://github.com/anotherhadi/nixy
# Installation script: Should be run on fresh nixos install.
printf "\n\e[0;92m- \e[0m\e[1;77mNixy's Installation Script\e[0;96m [anotherhadi/nixy]\e[0m"
# Check if we're on the good directory
[[ -f "./docs/scripts/install.sh" ]] || (printf "\n\e[0;91mx \e[0m\e[1;77mNot in the project root directory\e[0m"; exit 1)
DIR=$(pwd)
# Create a new configuration

View File

@ -15,4 +15,20 @@ let
notif "night-shift" "$message"
'';
in { home.packages = [ night-shift-on night-shift-off ]; }
night-shift-toggle = pkgs.writeShellScriptBin "night-shift-toggle" ''
if pgrep wlsunset; then
night-shift-off
else
night-shift-on
fi
'';
night-shift-status = pkgs.writeShellScriptBin "night-shift-status" ''
if pgrep wlsunset; then
echo "1"
else
echo "0"
fi
'';
in { home.packages = [ night-shift-on night-shift-off night-shift-toggle night-shift-status ]; }