configures niri desktop entries

This commit is contained in:
Dennis Schoepf 2025-11-26 17:32:09 +01:00
parent 5aec5313c5
commit 8872e59505
4 changed files with 25 additions and 2 deletions

View file

@ -34,6 +34,7 @@
swaynotificationcenter
gimp
wl-clipboard
hyprpicker
];
imports = [

View file

@ -10,11 +10,13 @@
type = "Application";
name = "SSH";
exec = "${config.home.homeDirectory}/.config/fuzzel/bin/fuzzel-ssh.sh";
icon = "ksmserver";
};
fuzzel-cliphist = {
type = "Application";
name = "Clipboard History";
exec = "${config.home.homeDirectory}/.config/fuzzel/bin/fuzzel-cliphist.sh";
icon = "xclipboard";
};
};

View file

@ -4,8 +4,6 @@
ly = {
enable = true;
settings = {
animation = "doom";
animation_timeout_sec = 30;
asterisk = "0x2022";
bigclock = "en";
default_input = "password";

View file

@ -11,4 +11,26 @@
# WM Utilities (split out if they need additional config)
programs.hyprlock.enable = true;
# Additional Desktop Entries
xdg.desktopEntries = {
screenshot = {
type = "Application";
name = "Screenshot";
exec = "niri msg action screenshot";
icon = "screenie";
};
screenshot-screen = {
type = "Application";
name = "Screenshot Screen";
exec = "niri msg action screenshot-screen";
icon = "screenie";
};
color-pickers = {
type = "Application";
name = "Color Picker";
exec = "hyprpicker";
icon = "colorpicker";
};
};
}