Compare commits
4 commits
23c6093c36
...
c6d21493ef
Author | SHA1 | Date | |
---|---|---|---|
Bruno BELANYI | c6d21493ef | ||
Bruno BELANYI | 5cebb9b54b | ||
Bruno BELANYI | 92c2748747 | ||
Bruno BELANYI | 4cae294cf5 |
|
@ -11,6 +11,10 @@ in
|
||||||
global = {
|
global = {
|
||||||
alignment = "center"; # Put message in the middle of the box
|
alignment = "center"; # Put message in the middle of the box
|
||||||
browser = "xdg-open"; # use default browser to open links
|
browser = "xdg-open"; # use default browser to open links
|
||||||
|
dmenu =
|
||||||
|
lib.mkIf
|
||||||
|
config.my.home.wm.rofi.enable
|
||||||
|
"rofi -p dunst -dmenu"; # use rofi for menu
|
||||||
follow = "keyboard"; # follow keyboard focus
|
follow = "keyboard"; # follow keyboard focus
|
||||||
font = "Monospace 8"; # Simple looking font
|
font = "Monospace 8"; # Simple looking font
|
||||||
frame_width = 3; # small frame
|
frame_width = 3; # small frame
|
||||||
|
|
|
@ -187,13 +187,13 @@ in
|
||||||
# Focus child container
|
# Focus child container
|
||||||
"${modifier}+a" = "focus child";
|
"${modifier}+a" = "focus child";
|
||||||
}
|
}
|
||||||
{
|
(lib.optionalAttrs config.my.home.wm.rofi.enable {
|
||||||
# Rofi tools
|
# Rofi tools
|
||||||
"${modifier}+d" = "exec rofi -show drun -disable-history";
|
"${modifier}+d" = "exec rofi -show drun -disable-history";
|
||||||
"${modifier}+Shift+d" = "exec rofi -show run -disable-history";
|
"${modifier}+Shift+d" = "exec rofi -show run -disable-history";
|
||||||
"${modifier}+p" = "exec --no-startup-id flameshot gui";
|
"${modifier}+p" = "exec --no-startup-id flameshot gui";
|
||||||
"${modifier}+Shift+p" = "exec rofi -show emoji";
|
"${modifier}+Shift+p" = "exec rofi -show emoji";
|
||||||
}
|
})
|
||||||
(
|
(
|
||||||
# Changing container focus
|
# Changing container focus
|
||||||
genMovementBindings (
|
genMovementBindings (
|
||||||
|
|
|
@ -14,6 +14,8 @@ in
|
||||||
|
|
||||||
history = {
|
history = {
|
||||||
size = 500000;
|
size = 500000;
|
||||||
|
save = 500000;
|
||||||
|
extended = false;
|
||||||
ignoreSpace = true;
|
ignoreSpace = true;
|
||||||
ignoreDups = true;
|
ignoreDups = true;
|
||||||
share = true;
|
share = true;
|
||||||
|
|
Loading…
Reference in a new issue