fix typo
This commit is contained in:
parent
61c53af455
commit
e589e47040
10
README.md
10
README.md
|
@ -171,22 +171,22 @@ compress.sh
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>
|
<summary>
|
||||||
toogle_blur.sh
|
toggle_blur.sh
|
||||||
</summary>
|
</summary>
|
||||||
|
|
||||||
**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.
|
**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```
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>
|
<summary>
|
||||||
toogle_oppacity.sh
|
toggle_oppacity.sh
|
||||||
</summary>
|
</summary>
|
||||||
|
|
||||||
**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.
|
**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```
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
|
@ -347,7 +347,7 @@ Mouse binding
|
||||||
- ```bindm = $mainMod, mouse:273, resizewindow```
|
- ```bindm = $mainMod, mouse:273, resizewindow```
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
# 🛠️ Instalation
|
# 🛠️ Installation
|
||||||
|
|
||||||
# 👥 Credits
|
# 👥 Credits
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,8 @@
|
||||||
music = pkgs.writeShellScriptBin "music" (builtins.readFile ./scripts/music.sh);
|
music = pkgs.writeShellScriptBin "music" (builtins.readFile ./scripts/music.sh);
|
||||||
lofi = pkgs.writeScriptBin "lofi" (builtins.readFile ./scripts/lofi.sh);
|
lofi = pkgs.writeScriptBin "lofi" (builtins.readFile ./scripts/lofi.sh);
|
||||||
|
|
||||||
toogle_blur = pkgs.writeScriptBin "toogle_blur" (builtins.readFile ./scripts/toogle_blur.sh);
|
toggle_blur = pkgs.writeScriptBin "toggle_blur" (builtins.readFile ./scripts/toggle_blur.sh);
|
||||||
toogle_oppacity = pkgs.writeScriptBin "toogle_oppacity" (builtins.readFile ./scripts/toogle_oppacity.sh);
|
toggle_oppacity = pkgs.writeScriptBin "toggle_oppacity" (builtins.readFile ./scripts/toggle_oppacity.sh);
|
||||||
|
|
||||||
maxfetch = pkgs.writeScriptBin "maxfetch" (builtins.readFile ./scripts/maxfetch.sh);
|
maxfetch = pkgs.writeScriptBin "maxfetch" (builtins.readFile ./scripts/maxfetch.sh);
|
||||||
|
|
||||||
|
@ -26,8 +26,8 @@ in {
|
||||||
music
|
music
|
||||||
lofi
|
lofi
|
||||||
|
|
||||||
toogle_blur
|
toggle_blur
|
||||||
toogle_oppacity
|
toggle_oppacity
|
||||||
|
|
||||||
maxfetch
|
maxfetch
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue