This commit is contained in:
Hadi 2024-09-20 13:35:40 +02:00
parent f49ac89514
commit 22c67467c0
4 changed files with 15 additions and 18 deletions

View File

@ -2,21 +2,16 @@
feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md)) feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
- [ ] Test hyprshade (replacement for gammastep) - [ ] Hyprshade (replacement for gammastep)
- [ ] !!! Qutebrowser Bitwarden integration (I need this.)
- [ ] Qutebrowser
- [ ] !!! Bitwarden integration (I need this.)
- [ ] Hyprland - [ ] Hyprland
- [ ] Fix screenshots (screenshot region's border shows up in the screenshot, hyprshot jq error?) and add in the scripts doc - [ ] Fix screenshots (screenshot region's border shows up in the screenshot, hyprshot jq error?) and add in the scripts doc
- [ ] Nixvim - [ ] Nixvim
- [ ] Keymaps: - [ ] Keymaps:
- Trouble - Trouble
- Tagbar (actually not working) - Tagbar (actually not working)
- Markdown - Markdown
- [ ] <https://github.com/0fie/Mika> - [ ] <https://github.com/0fie/Mika>
- [ ] Update docs - [ ] Update docs
## Server ## Server

View File

@ -443,11 +443,11 @@
"nixpkgs": "nixpkgs_5" "nixpkgs": "nixpkgs_5"
}, },
"locked": { "locked": {
"lastModified": 1726623416, "lastModified": 1726730189,
"narHash": "sha256-o/8yw7Mjy4QEeDQyxfQ3hCcOYKvdlQ2EnAyDEt8eGyA=", "narHash": "sha256-AoLcOAw2NVawdyeA2WnnFiqDHAm6ZMq2eUqy9SRGpHQ=",
"owner": "Jas-SinghFSU", "owner": "Jas-SinghFSU",
"repo": "HyprPanel", "repo": "HyprPanel",
"rev": "a8919c395fe69ec339bb34ad9000575b93e6994a", "rev": "9a66a72a563115f09aef650407a3a58ad566065b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -529,11 +529,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1726650330, "lastModified": 1726724509,
"narHash": "sha256-UbHzmaOQ18O/kCizipU70N0UQVFIfv8AiFKXw07oZ9Y=", "narHash": "sha256-sVeAM1tgVi52S1e29fFBTPUAFSzgQwgLon3CrztXGm8=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "abb448608a56a60075468e90d8acec2a7cb689b1", "rev": "10d5e0ecc32984c1bf1a9a46586be3451c42fd94",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -826,11 +826,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1726633022, "lastModified": 1726719408,
"narHash": "sha256-Ef/kTMoV3aPfecL2X27sxYshsLJJDIBFKYjPsqaTUBw=", "narHash": "sha256-r/dXHHa6py/fKy087nGt4k3GoBjqFvpyZCsyRsXl0IA=",
"owner": "Gerg-L", "owner": "Gerg-L",
"repo": "spicetify-nix", "repo": "spicetify-nix",
"rev": "9f373314f087e11183afe6928d48a816d44929d4", "rev": "49bb2ac8bdca209d235feabb9551dd09a5eb8ec9",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -43,6 +43,8 @@
tidy.enable = true; tidy.enable = true;
shellharden.enable = true; shellharden.enable = true;
shfmt.enable = true; shfmt.enable = true;
golines.enable = true;
gofumpt.enable = true;
}; };
}; };
}; };

View File

@ -10,11 +10,11 @@ let
caffeine = pkgs.writeShellScriptBin "caffeine" '' caffeine = pkgs.writeShellScriptBin "caffeine" ''
if [[ $(pidof "hypridle") ]]; then if [[ $(pidof "hypridle") ]]; then
pkill hypridle systemctl --user stop hypridle.service
title="󰅶 Caffeine Activated" title="󰅶 Caffeine Activated"
description="Caffeine is now active! Your screen will not turn off automatically." description="Caffeine is now active! Your screen will not turn off automatically."
else else
${pkgs.hyprland}/bin/hyprctl dispatch exec ${pkgs.hypridle}/bin/hypridle systemctl --user start hypridle.service
title="󰾪 Caffeine Deactivated" title="󰾪 Caffeine Deactivated"
description="Caffeine is now deactivated! Your screen will turn off automatically." description="Caffeine is now deactivated! Your screen will turn off automatically."
fi fi