Skip to content

Para mostrar el control de volumen en una interfaz gráfica.⠀Displaying Volume Control in a Graphical User Interface

License

Notifications You must be signed in to change notification settings

krovuxdev/changevolume

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

changevolume in dunst

Bienvenido a nuestro proyecto volumen | Welcome to our Volume Project

fotos

fotos

👇 Aqui esta la guia | Here is the guide 👇

En Cualquier linux distro | On any Linux distro

#1

git clone https://github.com/karimdev96/changevolume.git

#2

cd changevolume

#3

chmod +x install
chmod +x uninstall

como intalar changevolume | How install changevolume

sudo ./install

En nixos | in Nixos

#flake.nix
{
  inputs = {
     changevolume = {
            url = "github:krovuxdev/changevolume";
            inputs.nixpkgs.follows = "nixpkgs";
    };
  outputs = {
  ... # <-- Ajusta esta sección según tus necesidades específicas
            #Adjust this section to your specific needs  
  changevolume # <--- Agrega el módulo changevolume para importarlo en la configuración de NixOS
                      #Add the changevolume module to import into NixOS settings
  }@inputs: {
    nixosConfigurations = {
      host = nixpkgs.lib.nixosSystem {
        system = "x86_64-linux";
        modules = [
          ... # <-- Ajusta esta sección según tus necesidades específicas
                    #Adjust this section to your specific needs  
          home-manager.nixosModules.home-manager
          {
            ... # <-- Ajusta esta sección según tus necesidades específicas
                      #Adjust this section to your specific needs  
            home-manager.extraSpecialArgs = {
            ... # <-- Ajusta esta sección según tus necesidades específicas
                      #Adjust this section to your specific needs  
            changevolume = changevolume.nixosModules.changevolume; # <--- # Importa el módulo changevolume para NixOS
                                                                          # Import the changevolume module for NixOS
            };
          }
        ];
      };
    };
  };
}
#home.nix
{
  pkgs,
  config,
  changevolume
}: {
  imports = [  changevolume  ];
  programs.changevolume.enable = true;
  ... # <-- Ajusta esta sección según tus necesidades específicas
      #     Adjust this section to your specific needs
}

or

como desintalar changevolume | How Uninstall changevolume

uninstall

sudo ./uninstall

Requisitos y utilidad | Requirements & utility

  • pamixer
sudo pacman -S pamixer

Ahora puedes comenzar a usar ChangeVolume | Now can start using changevolume

command

changevolume --help

About

Para mostrar el control de volumen en una interfaz gráfica.⠀Displaying Volume Control in a Graphical User Interface

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published