tb
This commit is contained in:
parent
3f32cdd6ff
commit
b2bcd52da0
9 changed files with 146 additions and 21 deletions
|
|
@ -16,6 +16,7 @@
|
|||
./rofi.nix
|
||||
./sops.nix
|
||||
./stylix.nix
|
||||
./thunderbird.nix
|
||||
./zsh
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -120,6 +120,10 @@
|
|||
profiles.ChatGPT = {
|
||||
name = "ChatGPT";
|
||||
id = 1;
|
||||
userChrome = ''
|
||||
#TabsToolbar { visibility: collapse !important; }
|
||||
#nav-bar { visibility: collapse !important; }
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,10 @@
|
|||
"$terminal" = "alacritty";
|
||||
"$fileManager" = "alacritty -e ranger";
|
||||
|
||||
env = [
|
||||
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
|
||||
];
|
||||
|
||||
monitor = [
|
||||
",preferred,1"
|
||||
];
|
||||
|
|
@ -111,24 +115,24 @@
|
|||
"$mainMod, C, killactive,"
|
||||
"$mainMod, backspace, exec, hyprlock"
|
||||
"$mainMod, E, exec, $fileManager"
|
||||
"$mainMod, O, togglefloating,"
|
||||
"$mainMod, A, togglefloating,"
|
||||
"$mainMod, R, exec, rofi -show drun"
|
||||
"$mainMod, P, pseudo,"
|
||||
"$mainMod, J, togglesplit,"
|
||||
"$mainMod, S, togglesplit,"
|
||||
|
||||
"$mainMod, K, togglespecialworkspace, keepass"
|
||||
"$mainMod, K, exec, if (( $(pgrep keepassxc -c) < 2 )); then keepassxc; fi"
|
||||
"$mainMod, P, togglespecialworkspace, keepass"
|
||||
"$mainMod, P, exec, if (( $(pgrep keepassxc -c) < 2 )); then keepassxc; fi"
|
||||
|
||||
"$mainMod, M, togglespecialworkspace, chatgpt"
|
||||
"$mainMod, M, exec, [workspace special:chatgpt] pgrep firefox | xargs ps -fp | grep -- '-P ChatGPT --url chat.openai.com' || firefox -P ChatGPT --url chat.openai.com"
|
||||
"$mainMod, O, togglespecialworkspace, chatgpt"
|
||||
"$mainMod, O, exec, [workspace special:chatgpt] pgrep firefox | xargs ps -fp | grep -- '-P ChatGPT --url chat.openai.com' || firefox -P ChatGPT --url chat.openai.com"
|
||||
|
||||
", print, exec, hyprshot -m region -o /home/lilith/sync/screenshots -z"
|
||||
"CTRL, print, exec, hyprshot -m output -o /home/lilith/sync/screenshots -z"
|
||||
|
||||
"$mainMod, left, movefocus, l"
|
||||
"$mainMod, right, movefocus, r"
|
||||
"$mainMod, up, movefocus, u"
|
||||
"$mainMod, down, movefocus, d"
|
||||
"$mainMod, H, movefocus, l"
|
||||
"$mainMod, L, movefocus, r"
|
||||
"$mainMod, K, movefocus, u"
|
||||
"$mainMod, J, movefocus, d"
|
||||
|
||||
"$mainMod, 1, workspace, 1"
|
||||
"$mainMod, 2, workspace, 2"
|
||||
|
|
@ -152,8 +156,8 @@
|
|||
"$mainMod SHIFT, 9, movetoworkspace, 9"
|
||||
"$mainMod SHIFT, 0, movetoworkspace, 10"
|
||||
|
||||
"$mainMod, S, togglespecialworkspace, magic"
|
||||
"$mainMod SHIFT, S, movetoworkspace, special:magic"
|
||||
"$mainMod, I, togglespecialworkspace, magic"
|
||||
"$mainMod SHIFT, I, movetoworkspace, special:magic"
|
||||
];
|
||||
|
||||
bindm = [
|
||||
|
|
|
|||
8
home/thunderbird.nix
Normal file
8
home/thunderbird.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{...}:{
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue