3: Added Rofi, replaced Walker with Rofi (trial run), and added cliphist
This commit is contained in:
parent
4f378678c9
commit
a184270677
5
home/modules/cliphist.nix
Normal file
5
home/modules/cliphist.nix
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
services.cliphist = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
@ -8,11 +8,20 @@
|
||||
./mako.nix
|
||||
./walker.nix
|
||||
./network-manager.nix
|
||||
./rofi.nix
|
||||
./cliphist.nix
|
||||
];
|
||||
|
||||
programs.kitty.enable = true;
|
||||
|
||||
home.packages = [
|
||||
inputs.hyprland-qtutils.packages."${pkgs.system}".default
|
||||
pkgs.brightnessctl
|
||||
pkgs.kdePackages.xwaylandvideobridge
|
||||
pkgs.wl-clipboard
|
||||
|
||||
pkgs.libsForQt5.qt5ct
|
||||
pkgs.kdePackages.qt6ct
|
||||
];
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
@ -24,12 +33,13 @@
|
||||
bind =
|
||||
[
|
||||
"$mod, Return, exec, kitty"
|
||||
"$mod, SPACE, exec, walker"
|
||||
|
||||
"$mod, V, togglefloating,"
|
||||
"$mod, SPACE, exec, rofi -show run"
|
||||
"$mod, E, exec, dolphin"
|
||||
|
||||
"$mod SHIFT, V, togglefloating,"
|
||||
"$mod SHIFT, Q, killactive,"
|
||||
|
||||
"$mod, V, exec, cliphist list | rofi -dmenu | cliphist decode | wl-copy"
|
||||
]
|
||||
++ (
|
||||
# workspaces
|
||||
@ -75,7 +85,6 @@
|
||||
|
||||
extraConfig = ''
|
||||
exec-once = waybar
|
||||
exec-one = nm-applet --indicator
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
||||
13
home/modules/rofi.nix
Normal file
13
home/modules/rofi.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{pkgs, ... }: {
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
cycle = false;
|
||||
plugins = with pkgs; [
|
||||
rofi-emoji-wayland
|
||||
rofi-calc
|
||||
rofi-bluetooth
|
||||
rofi-screenshot
|
||||
rofi-power-menu
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user