rofi
This commit is contained in:
parent
85034f54ba
commit
008c2bcdd0
|
@ -1,7 +1,6 @@
|
||||||
{ config, pkgs, inputs, ... }:
|
{ config, pkgs, inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
|
|
||||||
imports = [
|
imports = [
|
||||||
./rofi
|
./rofi
|
||||||
./waybar
|
./waybar
|
||||||
|
@ -21,4 +20,6 @@
|
||||||
EDITOR = "vim";
|
EDITOR = "vim";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
pavucontrol
|
pavucontrol
|
||||||
swww
|
swww
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
|
cliphist
|
||||||
lxqt.lxqt-policykit
|
lxqt.lxqt-policykit
|
||||||
grim
|
grim
|
||||||
slurp
|
slurp
|
||||||
|
@ -60,10 +61,10 @@
|
||||||
"$mod, Q, killactive"
|
"$mod, Q, killactive"
|
||||||
"$mod, W, togglefloating"
|
"$mod, W, togglefloating"
|
||||||
"$mod, R, togglesplit"
|
"$mod, R, togglesplit"
|
||||||
"$mod+shift, Y, exec, systemctl suspend"
|
|
||||||
"$mod+shift, M, exit, hyprland"
|
|
||||||
"$mod, L, exec, amixer -q sset Master 5%+"
|
"$mod, L, exec, amixer -q sset Master 5%+"
|
||||||
"$mod, K, exec, amixer -q sset Master 5%-"
|
"$mod, K, exec, amixer -q sset Master 5%-"
|
||||||
|
"$mod+shift, Y, exec, systemctl suspend"
|
||||||
|
"$mod+shift, M, exit, hyprland"
|
||||||
|
|
||||||
# mocp
|
# mocp
|
||||||
"$mod, P, exec, mocp -f"
|
"$mod, P, exec, mocp -f"
|
||||||
|
@ -136,10 +137,6 @@
|
||||||
kb_options = "grp:alt_shift_toggle";
|
kb_options = "grp:alt_shift_toggle";
|
||||||
};
|
};
|
||||||
|
|
||||||
windowrule = [
|
|
||||||
"float, ^(rofi)$"
|
|
||||||
"float, ^(prisemlauncher)$"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.rofi-wayland;
|
||||||
theme = "~/nix/home/rofi/gruvbox-material.rasi";
|
theme = "~/nix/home/rofi/gruvbox-material.rasi";
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
modi = "drun";
|
modi = "drun";
|
||||||
|
@ -10,12 +11,12 @@
|
||||||
show-icons = true;
|
show-icons = true;
|
||||||
terminal = "alacritty";
|
terminal = "alacritty";
|
||||||
drun-display-format = "{icon} {name}";
|
drun-display-format = "{icon} {name}";
|
||||||
location = 0;
|
location = 1;
|
||||||
disable-history = false;
|
disable-history = false;
|
||||||
hide-scrollbar = true;
|
hide-scrollbar = true;
|
||||||
display-drun = " Apps ";
|
display-drun = " Apps ";
|
||||||
display-network = " Network";
|
display-network = " Network";
|
||||||
sidebar-mode = true;
|
sidebar-mode = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
services.xserver.videoDrivers = ["amdgpu"];
|
services.xserver.videoDrivers = ["amdgpu"];
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.loader.timeout = 0;
|
boot.loader.timeout = 5;
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../../modules
|
../../modules
|
||||||
|
|
|
@ -59,23 +59,18 @@
|
||||||
gnome.gnome-calculator
|
gnome.gnome-calculator
|
||||||
gnome.gnome-disk-utility
|
gnome.gnome-disk-utility
|
||||||
#random utils
|
#random utils
|
||||||
|
rofi-wayland
|
||||||
screen
|
screen
|
||||||
pciutils
|
|
||||||
cliphist
|
|
||||||
wl-clipboard
|
|
||||||
git
|
git
|
||||||
zip
|
zip
|
||||||
rar
|
rar
|
||||||
unzip
|
unzip
|
||||||
unrar
|
unrar
|
||||||
scrcpy
|
scrcpy
|
||||||
lm_sensors
|
|
||||||
appimage-run
|
appimage-run
|
||||||
ytmdl
|
ytmdl
|
||||||
yt-dlp
|
yt-dlp
|
||||||
boxbuddy
|
boxbuddy
|
||||||
distrobox
|
distrobox
|
||||||
wget
|
|
||||||
unixtools.ifconfig
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue