switched to jaq from jq

This commit is contained in:
Nickiel12 2023-11-16 16:24:23 -08:00
parent bc4efd65f8
commit 8f83d046bf
4 changed files with 5 additions and 4 deletions

View file

@ -8,7 +8,7 @@ in
home.packages = with pkgs; [
alsa-utils
gcal
jq
jaq
playerctl
pw-volume
socat

View file

@ -152,7 +152,7 @@
{music != "" ? "🎵${music}" : ""}))
(defpoll volume :interval "1s"
{"pw-volume status | jq '.percentage // -1'" ?: 500})
{"pw-volume status | jaq '.percentage // -1'" ?: 500})
(include "windows.yuck")
(include "./modules/center-clock.yuck")

View file

@ -23,8 +23,8 @@ in
# binde, will repeat when held
#https://wiki.hyprland.org/Configuring/Binds/#bind-flags
binde = [
",XF86AudioRaiseVolume, exec, pw-volume change +1%; ${pkgs.eww}/bin/eww update volume=$(pw-volume status | jq '.percentage // 10')"
",XF86AudioLowerVolume, exec, pw-volume change -1%; ${pkgs.eww}/bin/eww update volume=$(pw-volume status | jq '.percentage // 10')"
",XF86AudioRaiseVolume, exec, pw-volume change +1%; ${pkgs.eww}/bin/eww update volume=$(pw-volume status | jaq '.percentage // 10')"
",XF86AudioLowerVolume, exec, pw-volume change -1%; ${pkgs.eww}/bin/eww update volume=$(pw-volume status | jaq '.percentage // 10')"
];
# listen even when locked

View file

@ -42,6 +42,7 @@ in
shellAliases = {
cat = "bat";
ls = "eza";
jq = "jaq";
gust = "/home/nixolas/Documents/Gust/target/debug/gust";
rm = "rmtrash";
open-config = "cd ~/Documents/nicks-nix-config; nvim";