hide some desktop entries

This commit is contained in:
Adithya 2023-03-22 23:27:24 +05:30
parent dbd31ab33b
commit fe7ae76bdb
No known key found for this signature in database
GPG key ID: 0C7F35F4F821290F
5 changed files with 35 additions and 2 deletions

View file

@ -72,6 +72,10 @@ in
xdg.mimeApps.enable = true;
xdg.userDirs.enable = true;
xdg.desktopEntries."nixos-manual".name = "NixOS Manual";
xdg.desktopEntries."nixos-manual".exec = "nixos-help";
xdg.desktopEntries."nixos-manual".noDisplay = true;
home.stateVersion = "23.05";
};
}

View file

@ -1,4 +1,14 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
xdg.desktopEntries."mpv".name = "mpv Media Player";
xdg.desktopEntries."mpv".exec = "mpv --player-operation-mode=pseudo-gui -- %U";
xdg.desktopEntries."mpv".noDisplay = true;
xdg.desktopEntries."umpv".name = "umpv Media Player";
xdg.desktopEntries."umpv".exec = "umpv --player-operation-mode=pseudo-gui -- %U";
xdg.desktopEntries."umpv".noDisplay = true;
home.packages = with pkgs; [
celluloid
spotify-tui

View file

@ -1,6 +1,10 @@
{ pkgs, ... }:
{
xdg.desktopEntries."nvim".name = "Neovim wrapper";
xdg.desktopEntries."nvim".exec = "nvim %F";
xdg.desktopEntries."nvim".noDisplay = true;
programs.neovim = {
enable = true;
viAlias = true;

View file

@ -1,4 +1,14 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
xdg.desktopEntries."rofi".name = "Rofi";
xdg.desktopEntries."rofi".exec = "rofi -show";
xdg.desktopEntries."rofi".noDisplay = true;
xdg.desktopEntries."rofi-theme-selector".name = "Rofi Theme Selector";
xdg.desktopEntries."rofi-theme-selector".exec = "rofi-theme-selector";
xdg.desktopEntries."rofi-theme-selector".noDisplay = true;
programs.rofi = {
enable = true;
cycle = false;

View file

@ -6,6 +6,11 @@
./tmux.nix
];
xdg.desktopEntries."btop".name = "btop++";
xdg.desktopEntries."btop".exec = "btop";
xdg.desktopEntries."btop".noDisplay = true;
programs = {
atuin.enable = true;
bat = {