Rename terminal workspace to dev, decouple from wezterm
This commit is contained in:
parent
cc75a74d52
commit
0cb1cd9b37
|
@ -173,7 +173,7 @@
|
|||
"sort-by-number": true,
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"terminal": "",
|
||||
"dev": "",
|
||||
"browser": "",
|
||||
"files": "",
|
||||
"chat": "",
|
||||
|
|
|
@ -85,6 +85,7 @@
|
|||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||
bind = ALT, Return, exec, wezterm
|
||||
bind = ALT, Space, exec, pkill rofi || rofi -show drun
|
||||
bind = ALT, E, thunar
|
||||
bind = ALT, Q, killactive,
|
||||
bind = ALT, P, exec, swaylock
|
||||
bind = ALT, M, fullscreen, 0
|
||||
|
@ -106,22 +107,22 @@
|
|||
bind = ALT SHIFT, K, movewindow, u
|
||||
bind = ALT SHIFT, J, movewindow, d
|
||||
|
||||
workspace = name:terminal
|
||||
workspace = name:dev
|
||||
workspace = name:browser
|
||||
workspace = name:files
|
||||
workspace = name:chat
|
||||
|
||||
windowrule = workspace name:terminal, org.wezfurlong.wezterm
|
||||
windowrule = workspace name:browser, firefox
|
||||
windowrule = workspace name:files, thunar
|
||||
windowrule = workspace name:files, libreoffice.*
|
||||
windowrule = workspace name:files, Zotero
|
||||
windowrule = workspace name:chat, Signal
|
||||
windowrule = workspace name:chat, fractal
|
||||
|
||||
bind = ALT, T, moveworkspacetomonitor, name:terminal current
|
||||
bind = ALT, T, workspace, name:terminal
|
||||
bind = ALT SHIFT, T, moveworkspacetomonitor, name:terminal current
|
||||
bind = ALT SHIFT, T, movetoworkspace, name:terminal
|
||||
bind = ALT, D, moveworkspacetomonitor, name:dev current
|
||||
bind = ALT, D, workspace, name:dev
|
||||
bind = ALT SHIFT, D, moveworkspacetomonitor, name:dev current
|
||||
bind = ALT SHIFT, D, movetoworkspace, name:dev
|
||||
|
||||
bind = ALT, W, moveworkspacetomonitor, name:browser current
|
||||
bind = ALT, W, workspace, name:browser
|
||||
|
@ -131,7 +132,6 @@
|
|||
|
||||
bind = ALT, F, moveworkspacetomonitor, name:files current
|
||||
bind = ALT, F, workspace, name:files
|
||||
bind = ALT, F, exec, pgrep thunar > /dev/null || thunar
|
||||
bind = ALT SHIFT, F, moveworkspacetomonitor, name:files current
|
||||
bind = ALT SHIFT, F, movetoworkspace, name:files
|
||||
|
||||
|
@ -153,15 +153,12 @@
|
|||
bindm = ALT, mouse:273, resizewindow
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
||||
windowrule = float, ^(foot)$
|
||||
windowrule = center, ^(foot)$
|
||||
windowrule = float, ^(pavucontrol)$
|
||||
windowrule = center, ^(pavucontrol)$
|
||||
windowrule = float, ^(.blueman-manager-wrapped)$
|
||||
windowrule = center, ^(.blueman-manager-wrapped)$
|
||||
windowrule = float, ^(otpclient)$
|
||||
windowrule = move 2% 6%, ^(otpclient)$
|
||||
windowrule = float, ^(thunar)$
|
||||
'';
|
||||
xdg.configFile."hypr/macchiato.conf".text = ''
|
||||
$rosewaterAlpha = f4dbd6
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
power-profiles = pkgs.writeShellScriptBin "power-profiles" (builtins.readFile ./scripts/power-profiles);
|
||||
icon-theme = config.gtk.iconTheme.name;
|
||||
in {
|
||||
imports = [../gui/foot.nix ./gtk.nix];
|
||||
imports = [./gtk.nix];
|
||||
home.packages = [powermenu power-profiles];
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
|
|
|
@ -37,7 +37,6 @@ in {
|
|||
./gtk.nix
|
||||
./dunst.nix
|
||||
./rofi.nix
|
||||
../gui/foot.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
configure-gtk
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [./firefox.nix ./wezterm.nix];
|
||||
home.packages = with pkgs; [bitwarden otpclient signal-desktop fractal ];
|
||||
home.packages = with pkgs; [bitwarden otpclient signal-desktop fractal];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue