This commit is contained in:
Ivan Dimitrov 2024-04-19 17:41:38 +03:00
parent b6d7d86d00
commit 251c94980d
5 changed files with 23 additions and 1 deletions

View File

@ -16,6 +16,7 @@ let
nvim nvim
obs-studio obs-studio
pueue pueue
rofi
starship starship
sway sway
swaylock swaylock

View File

@ -1,6 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
rofi-wayland
gopass gopass
grim grim
libnotify libnotify

View File

@ -17,6 +17,7 @@
nushell = import ./nushell; nushell = import ./nushell;
obs-studio = import ./obs-studio { inherit pkgs; }; obs-studio = import ./obs-studio { inherit pkgs; };
pueue = import ./pueue; pueue = import ./pueue;
rofi = import ./rofi { inherit pkgs; };
starship = import ./starship; starship = import ./starship;
sway = import ./sway { inherit pkgs; }; sway = import ./sway { inherit pkgs; };
swaylock = import ./swaylock; swaylock = import ./swaylock;

View File

@ -0,0 +1,18 @@
{ pkgs, ... }: {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland.override {
plugins = with pkgs; [
(
rofi-calc.override
{
rofi-unwrapped = pkgs.rofi-wayland-unwrapped;
}
)
];
};
extraConfig = {
modi = "window,drun,run,ssh,calc";
};
};
}

View File

@ -18,6 +18,9 @@ bindsym $mod+Shift+c kill
# Start your launcher # Start your launcher
bindsym $mod+p exec $menu bindsym $mod+p exec $menu
# Start rofi calc
bindsym $mod+r+c exec rofi -show calc
# Resize windows with mod + mouse # Resize windows with mod + mouse
floating_modifier $mod normal floating_modifier $mod normal