Gen 441: Extra firefox tweaks and organized the scripts folder

This commit is contained in:
pagedMov
2024-10-13 00:07:47 -04:00
parent 3dce49571a
commit e52da77ade
36 changed files with 229 additions and 105 deletions

View File

@@ -0,0 +1,12 @@
{ self, pkgs }:
pkgs.writeShellScriptBin "toggle_blur" (''
#!/usr/bin/env bash
if hyprctl getoption decoration:blur:enabled | grep "int: 1" >/dev/null ; then
hyprctl keyword decoration:blur:enabled false >/dev/null
else
hyprctl keyword decoration:blur:enabled true >/dev/null
fi
'')