This commit is contained in:
2024-05-13 14:58:07 +01:00
parent e60884f99b
commit 8f2751e8f6
4 changed files with 289 additions and 13 deletions
+2 -3
View File
@@ -123,7 +123,6 @@
gestures = {
workspace_swipe = true;
workspace_swipe_numbered = true;
};
windowrule = [
@@ -168,8 +167,8 @@
bind = [
# "$mainMod, grave, hyprexpo:expo, toggle" # can be: toggle, off/disable or on/enable
"$altMod, Return, exec, $HOME/.local/bin/ghostty"
"$mainMod, Return, exec, $HOME/.local/bin/ghostty" # for apps that yoink alt- binds
"$altMod, Return, exec, ghostty"
"$mainMod, Return, exec, ghostty" # for apps that yoink alt- binds
"$altMod SHIFT, Return, exec, alacritty"
"$mainMod SHIFT, D, exec, discord --enable-blink-features=MiddleClickAutoscroll"
"$mainMod SHIFT, E, exec, emacsclient -c -a 'emacs'"
+20
View File
@@ -0,0 +1,20 @@
{ pkgs, ... }:
{
programs.tmux = {
enable = true;
shell = "${pkgs.bash}/bin/bash";
clock24 = true;
terminal = "tmux-256color";
plugins = with pkgs; [
tmuxPlugins.sensible
{
plugin = tmuxPlugins.catpuccin;
extraConfig = ''
set -g @catpuccin_flavour 'frappe'
set -g @catpuccin_date_time "%H:%M"
'';
}
];
};
}