fixed notification volume/brightness removed some gnome applications and updated system + .gitignore

This commit is contained in:
2026-05-01 20:13:27 +02:00
parent 3ce6c956f6
commit 154486074f
7 changed files with 41 additions and 41 deletions
-18
View File
@@ -1,18 +0,0 @@
{pkgs, ...}: let
customJar = /etc/nixos/home/packages/media/bitwig.jar;
in {
users.users.someone.packages = with pkgs; [
(bitwig-studio6.overrideAttrs (old: {
version = "6.0";
src = pkgs.fetchurl {
name = "bitwig-studio-6.0.deb";
url = "https://www.bitwig.com/dl/Bitwig%20Studio/6.0/installer_linux";
hash = "sha256-jrCTgaxfeWhfKwLeKLmqTQWS7RVbVnHqJ0InCipmm8k=";
};
postInstall = ''
cp ${customJar} $out/libexec/bin/bitwig.jar
'';
}))
];
}
-5
View File
@@ -36,12 +36,7 @@
weathr
# gnome
dconf-editor
file-roller
gnome-control-center
gnome-text-editor
nautilus
(papers.override {supportNautilus = true;})
inkscape
scrcpy
android-tools
awww
+5 -5
View File
@@ -17,7 +17,7 @@
};
"XF86AudioMute" = {
_props.allow-when-locked = true;
spawn._args = ["sh" "-c" "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle && notify-send -e -h string:x-canonical-private-synchronous:volume -h \"int:value:$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print $2 * 100}')\" -c osd \"Volume\""];
spawn._args = ["sh" "-c" "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle && /etc/nixos/scripts/volume-notify.sh"];
};
"XF86AudioMicMute" = {
_props.allow-when-locked = true;
@@ -25,19 +25,19 @@
};
"XF86AudioRaiseVolume" = {
_props.allow-when-locked = true;
spawn._args = ["sh" "-c" "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+ && notify-send -e -h string:x-canonical-private-synchronous:volume -h \"int:value:$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print $2 * 100}')\" -c osd \"Volume\""];
spawn._args = ["sh" "-c" "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+ && /etc/nixos/scripts/volume-notify.sh"];
};
"XF86AudioLowerVolume" = {
_props.allow-when-locked = true;
spawn._args = ["sh" "-c" "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- && notify-send -e -h string:x-canonical-private-synchronous:volume -h \"int:value:$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print $2 * 100}')\" -c osd \"Volume\""];
spawn._args = ["sh" "-c" "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- && /etc/nixos/scripts/volume-notify.sh"];
};
"XF86MonBrightnessUp" = {
_props.allow-when-locked = true;
spawn._args = ["sh" "-c" "brightnessctl set 10%+ && notify-send -e -h string:x-canonical-private-synchronous:brightness -h \"int:value:$(brightnessctl -m | cut -d, -f4 | tr -d '%')\" -c osd \"Brightness\""];
spawn._args = ["sh" "-c" "brightnessctl set 10%+ && /etc/nixos/scripts/brightness-notify.sh"];
};
"XF86MonBrightnessDown" = {
_props.allow-when-locked = true;
spawn._args = ["sh" "-c" "brightnessctl set 10%- && notify-send -e -h string:x-canonical-private-synchronous:brightness -h \"int:value:$(brightnessctl -m | cut -d, -f4 | tr -d '%')\" -c osd \"Brightness\""];
spawn._args = ["sh" "-c" "brightnessctl set 10%- && /etc/nixos/scripts/brightness-notify.sh"];
};
"Print".spawn._args = ["sh" "-c" "grim -g \"$(slurp)\" - | satty --filename - --output-filename ~/Pictures/Screenshots/satty-$(date +%Y%m%d-%H%M%S).png"];
"Mod+B".spawn._args = ["zen"];