modularize gui and browsers modules

This commit is contained in:
Fabian Montero 2025-01-28 12:15:31 -06:00
parent 5b194ca54a
commit d7f1c06f40
Signed by: fabian
GPG key ID: 1FFAC35E1798174F
2 changed files with 17 additions and 14 deletions

View file

@ -15,5 +15,12 @@ in {
chromium chromium
firefox firefox
]; ];
# create an option for this
xsession.windowManager.i3.config.startup = [
{
command = "${lib.getExe pkgs.i3-gaps} 'workspace 1; exec ${lib.getExe pkgs.firefox}'";
}
];
}; };
} }

View file

@ -45,47 +45,43 @@ with lib; {
# y se sobreescriba las cosas que pongo acá # y se sobreescriba las cosas que pongo acá
# NO QUITARLO. ver man home-configuration.nix # NO QUITARLO. ver man home-configuration.nix
keybindings = mkOptionDefault { keybindings = mkOptionDefault {
"${mod}+Return" = "exec ${pkgs.kitty}/bin/kitty ${pkgs.tmux}/bin/tmux"; "${mod}+Return" = "exec ${lib.getExe pkgs.kitty} ${lib.getExe pkgs.tmux}";
"${mod}+Tab" = "focus right"; "${mod}+Tab" = "focus right";
"${mod}+Shift+Tab" = "focus left"; "${mod}+Shift+Tab" = "focus left";
"${mod}+Shift+s" = "exec ${pkgs.maim}/bin/maim -s -u | ${pkgs.xclip}/bin/xclip -selection clipboard -t image/png -i"; "${mod}+Shift+s" = "exec ${lib.getExe pkgs.maim} -s -u | ${lib.getExe pkgs.xclip} -selection clipboard -t image/png -i";
"${mod}+Shift+w" = "move workspace to output right"; "${mod}+Shift+w" = "move workspace to output right";
"${mod}+l" = "exec ${pkgs.betterlockscreen}/bin/betterlockscreen -l"; "${mod}+l" = "exec ${lib.getExe pkgs.betterlockscreen} -l";
}; };
startup = [ startup = [
{ {
command = "${pkgs.xss-lock}/bin/xss-lock --transfer-sleep-lock -- ${pkgs.i3lock}/bin/i3lock --nofork"; command = "${lib.getExe pkgs.xss-lock} --transfer-sleep-lock -- ${lib.getExe pkgs.i3lock} --nofork";
notification = false; notification = false;
} }
{ {
command = "${pkgs.networkmanagerapplet}/bin/nm-applet"; command = "${lib.getExe pkgs.networkmanagerapplet}";
notification = false; notification = false;
} }
#todo: sería nice hostear esta imagen en el server y fetchearla si no existe #todo: sería nice hostear esta imagen en el server y fetchearla si no existe
{ {
command = "${pkgs.feh}/bin/feh --bg-fill ${config.home.homeDirectory}/Pictures/wallpapers/jupiter.png"; command = "${lib.getExe pkgs.feh} --bg-fill ${config.home.homeDirectory}/Pictures/wallpapers/jupiter.png";
notification = false; notification = false;
always = true; always = true;
} }
{ {
#todo: move this to browsers module #todo: move this to telegram module
command = "${pkgs.i3-gaps}/bin/i3-msg 'workspace 1; exec ${pkgs.firefox}/bin/firefox'"; command = "${lib.getExe pkgs.i3-gaps} 'workspace 2; exec ${lib.getExe pkgs.tdesktop}'";
} }
{ {
#todo: move this to telegram module command = "${lib.getExe pkgs.i3-gaps} 'workspace 2; exec ${lib.getExe pkgs.gajim}'";
command = "${pkgs.i3-gaps}/bin/i3-msg 'workspace 2; exec ${pkgs.tdesktop}/bin/telegram-desktop'";
} }
#{
# command = "${pkgs.i3-gaps}/bin/i3-msg 'workspace 2; exec ${pkgs.element-desktop}/bin/element-desktop'";
#}
{ {
command = "${pkgs.systemd}/bin/systemctl --user restart polybar.service"; command = "${pkgs.systemd}/bin/systemctl --user restart polybar.service";
notification = false; notification = false;
always = true; always = true;
} }
{ {
command = "${pkgs.autorandr}/bin/autorandr -c"; command = "${lib.getExe pkgs.autorandr} -c";
notification = false; notification = false;
always = true; always = true;
} }