fixed notification volume/brightness removed some gnome applications and updated system + .gitignore
This commit is contained in:
@@ -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
|
||||
'';
|
||||
}))
|
||||
];
|
||||
}
|
||||
@@ -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
|
||||
|
||||
@@ -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"];
|
||||
|
||||
Reference in New Issue
Block a user