mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
meep
This commit is contained in:
parent
a16524d215
commit
fa7bf090d2
9 changed files with 47 additions and 8 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
{pkgs, config, ...}: {
|
||||
programs.niri.settings.spawn-at-startup = let
|
||||
import-gsettings = pkgs.writeShellScriptBin "import-gsettings" ''
|
||||
# usage: import-gsettings
|
||||
|
|
@ -53,12 +53,35 @@
|
|||
# program autostart
|
||||
{
|
||||
command = [
|
||||
"firefox"
|
||||
"${pkgs.dbus}/bin/dbus-update-activation-environment"
|
||||
"--all"
|
||||
];
|
||||
}
|
||||
{
|
||||
command = [
|
||||
"discord"
|
||||
"--enable-features=WaylandLinuxDrmSyncobj,UseOzonePlatform"
|
||||
"--ozone-platform=wayland"
|
||||
];
|
||||
}
|
||||
{
|
||||
command = [
|
||||
"${pkgs.udiskie}/bin/udiskie"
|
||||
];
|
||||
}
|
||||
{
|
||||
command = [
|
||||
"${pkgs.pasystray}/bin/pasystray"
|
||||
];
|
||||
}
|
||||
{
|
||||
command = [
|
||||
"${pkgs.networkmanagerapplet}/bin/nm-applet"
|
||||
];
|
||||
}
|
||||
{
|
||||
command = [
|
||||
"firefox"
|
||||
];
|
||||
}
|
||||
];
|
||||
|
|
|
|||
|
|
@ -138,6 +138,8 @@ in {
|
|||
"Mod+Shift+P".action.power-off-monitors = {};
|
||||
|
||||
# Kat
|
||||
"XF86MonBrightnessUp".action.spawn = ["${pkgs.brightnessctl}/bin/brightnessctl" "-c" "backlight" "set" "5%+"];
|
||||
"XF86MonBrightnessDown".action.spawn = ["${pkgs.brightnessctl}/bin/brightnessctl" "-c" "backlight" "set" "5%-"];
|
||||
"XF86AudioRaiseVolume".action.spawn = ["wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1+"];
|
||||
"XF86AudioLowerVolume".action.spawn = ["wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1-"];
|
||||
"XF86AudioMute".action.spawn = ["wpctl" "set-mute" "@DEFAULT_AUDIO_SINK@" "toggle"];
|
||||
|
|
|
|||
|
|
@ -72,6 +72,9 @@ in {
|
|||
color = config.palette.crust.hex;
|
||||
};
|
||||
};
|
||||
debug = {
|
||||
wait-for-frame-completion-in-pipewire = {};
|
||||
};
|
||||
workspaces = {
|
||||
browser = {};
|
||||
chat = {};
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ _: {
|
|||
{
|
||||
matches = [{app-id = "^steam_app_default$";}];
|
||||
open-on-workspace = "vidya";
|
||||
open-floating = true;
|
||||
}
|
||||
{
|
||||
matches = [{app-id = "^spotify$";}];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue