Add fractal matrix client, make rofi keybind toggle state

This commit is contained in:
Evie Litherland-Smith 2023-06-19 16:50:58 +01:00
parent 5156417798
commit b18f7d99ae
2 changed files with 5 additions and 5 deletions

View file

@ -103,7 +103,7 @@ in {
bind = SUPER, E, exec, power-profiles bind = SUPER, E, exec, power-profiles
bind = SUPER, P, exec, powermenu bind = SUPER, P, exec, powermenu
bind = SUPER, V, togglefloating, bind = SUPER, V, togglefloating,
bind = SUPER, Space, exec, rofi -show drun bind = SUPER, Space, exec, pkill rofi || rofi -show drun
bind = SUPER, S, exec, grim -g "$(slurp)" bind = SUPER, S, exec, grim -g "$(slurp)"
bind = SUPER, F1, exec, swaylock bind = SUPER, F1, exec, swaylock
bind = SUPER, W, exec, firefox bind = SUPER, W, exec, firefox
@ -112,8 +112,8 @@ in {
bind = SUPER, A, bringactivetotop bind = SUPER, A, bringactivetotop
bind = , XF86AudioMute, exec, pamixer -t bind = , XF86AudioMute, exec, pamixer -t
bind = , XF86AudioRaiseVolume, exec, pamixer -i 2 binde = , XF86AudioRaiseVolume, exec, pamixer -i 2
bind = , XF86AudioLowerVolume, exec, pamixer -d 2 binde = , XF86AudioLowerVolume, exec, pamixer -d 2
# Move focus with mainMod + arrow keys # Move focus with mainMod + arrow keys
bind = SUPER, left, movefocus, l bind = SUPER, left, movefocus, l
@ -195,7 +195,7 @@ in {
windowrule = move 2% 6%, ^(otpclient)$ windowrule = move 2% 6%, ^(otpclient)$
windowrule = workspace 2, ^(firefox)$ windowrule = workspace 2, ^(firefox)$
windowrule = workspace 3 silent, ^(Element|Signal|discord)$ windowrule = workspace 3 silent, ^(Signal|fractal|discord|teams-for-linux)$
''; '';
xdg.configFile."hypr/macchiato.conf".text = '' xdg.configFile."hypr/macchiato.conf".text = ''
$rosewaterAlpha = f4dbd6 $rosewaterAlpha = f4dbd6

View file

@ -1,4 +1,4 @@
{pkgs, ...}: { {pkgs, ...}: {
imports = [./firefox.nix ./wezterm.nix]; imports = [./firefox.nix ./wezterm.nix];
home.packages = with pkgs; [signal-desktop bitwarden otpclient]; home.packages = with pkgs; [bitwarden otpclient signal-desktop fractal ];
} }