Compare commits

..

4 commits

Author SHA1 Message Date
Bruno BELANYI c6d21493ef home: zsh: explicitly set history save size
All checks were successful
continuous-integration/drone/push Build is passing
Turns out the `history.save` limit is for what is *loaded into memory*,
not what is written to disk.
2021-06-23 23:14:05 +02:00
Bruno BELANYI 5cebb9b54b home: zsh: explicitly opt out of extended history 2021-06-23 23:13:39 +02:00
Bruno BELANYI 92c2748747 home: wm: dunst: use rofi as 'dmenu' when enabled 2021-06-23 23:08:23 +02:00
Bruno BELANYI 4cae294cf5 home: wm: i3: enable rofi bindings when applicable 2021-06-23 23:06:15 +02:00
3 changed files with 8 additions and 2 deletions

View file

@ -11,6 +11,10 @@ in
global = {
alignment = "center"; # Put message in the middle of the box
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
font = "Monospace 8"; # Simple looking font
frame_width = 3; # small frame

View file

@ -187,13 +187,13 @@ in
# Focus child container
"${modifier}+a" = "focus child";
}
{
(lib.optionalAttrs config.my.home.wm.rofi.enable {
# Rofi tools
"${modifier}+d" = "exec rofi -show drun -disable-history";
"${modifier}+Shift+d" = "exec rofi -show run -disable-history";
"${modifier}+p" = "exec --no-startup-id flameshot gui";
"${modifier}+Shift+p" = "exec rofi -show emoji";
}
})
(
# Changing container focus
genMovementBindings (

View file

@ -14,6 +14,8 @@ in
history = {
size = 500000;
save = 500000;
extended = false;
ignoreSpace = true;
ignoreDups = true;
share = true;