diff --git a/README.md b/README.md index 53e5a19..920c53e 100644 --- a/README.md +++ b/README.md @@ -171,22 +171,22 @@ compress.sh
-toogle_blur.sh +toggle_blur.sh **Description:** This script toggles the Hyprland blur effect. If the blur is currently enabled, it will be disabled, and if it's disabled, it will be turned on. -**Usage:** ```toogle_blur``` +**Usage:** ```toggle_blur```
-toogle_oppacity.sh +toggle_oppacity.sh **Description:** This script toggles the Hyperland oppacity effect. If the oppacity is currently set to 0.90, it will be set to 1, and if it's set to 1, it will be set to 0.90. -**Usage:** ```toogle_oppacity``` +**Usage:** ```toggle_oppacity```
@@ -347,7 +347,7 @@ Mouse binding - ```bindm = $mainMod, mouse:273, resizewindow```
-# 🛠️ Instalation +# 🛠️ Installation # 👥 Credits diff --git a/modules/home/scripts/default.nix b/modules/home/scripts/default.nix index 5dabd17..1e27c49 100644 --- a/modules/home/scripts/default.nix +++ b/modules/home/scripts/default.nix @@ -6,8 +6,8 @@ music = pkgs.writeShellScriptBin "music" (builtins.readFile ./scripts/music.sh); lofi = pkgs.writeScriptBin "lofi" (builtins.readFile ./scripts/lofi.sh); - toogle_blur = pkgs.writeScriptBin "toogle_blur" (builtins.readFile ./scripts/toogle_blur.sh); - toogle_oppacity = pkgs.writeScriptBin "toogle_oppacity" (builtins.readFile ./scripts/toogle_oppacity.sh); + toggle_blur = pkgs.writeScriptBin "toggle_blur" (builtins.readFile ./scripts/toggle_blur.sh); + toggle_oppacity = pkgs.writeScriptBin "toggle_oppacity" (builtins.readFile ./scripts/toggle_oppacity.sh); maxfetch = pkgs.writeScriptBin "maxfetch" (builtins.readFile ./scripts/maxfetch.sh); @@ -26,8 +26,8 @@ in { music lofi - toogle_blur - toogle_oppacity + toggle_blur + toggle_oppacity maxfetch diff --git a/modules/home/scripts/scripts/toogle_blur.sh b/modules/home/scripts/scripts/toggle_blur.sh similarity index 100% rename from modules/home/scripts/scripts/toogle_blur.sh rename to modules/home/scripts/scripts/toggle_blur.sh diff --git a/modules/home/scripts/scripts/toogle_oppacity.sh b/modules/home/scripts/scripts/toggle_oppacity.sh similarity index 100% rename from modules/home/scripts/scripts/toogle_oppacity.sh rename to modules/home/scripts/scripts/toggle_oppacity.sh