Compare commits
No commits in common. "b5d21b8bb633dc5dce597a8100afb7ee0595020b" and "80954f18fa7e243677ebf82f6ec30debf6da2fa5" have entirely different histories.
b5d21b8bb6
...
80954f18fa
|
@ -37,7 +37,7 @@ in
|
||||||
MANPAGER = "nvim +Man!";
|
MANPAGER = "nvim +Man!";
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.configFile."nvim/lua/parsers.lua".text = /* lua */ ''
|
xdg.configFile."nvim/lua/parsers.lua".text = ''
|
||||||
vim.opt.runtimepath:append ("${treesitter-parsers}")
|
vim.opt.runtimepath:append ("${treesitter-parsers}")
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib) getExe getExe';
|
|
||||||
|
|
||||||
cfg = config.snowhawk.tmux.sessionizer;
|
cfg = config.snowhawk.tmux.sessionizer;
|
||||||
tmuxCfg = config.snowhawk.tmux;
|
tmuxCfg = config.snowhawk.tmux;
|
||||||
|
|
||||||
|
@ -38,36 +36,42 @@ in
|
||||||
config = lib.mkIf enable {
|
config = lib.mkIf enable {
|
||||||
|
|
||||||
snowhawk.tmux.sessionizer.pkg =
|
snowhawk.tmux.sessionizer.pkg =
|
||||||
lib.mkDefault (pkgs.writeShellApplication {
|
let
|
||||||
name = "tmux-sessionizer";
|
tmux = "${pkgs.tmux}/bin/tmux";
|
||||||
runtimeInputs = with pkgs; [ tmux fzf findutils coreutils procps ];
|
pgrep = "${pkgs.procps}/bin/pgrep";
|
||||||
text = /* bash */ ''
|
basename = "${pkgs.coreutils}/bin/basename";
|
||||||
|
tr = "${pkgs.coreutils}/bin/tr";
|
||||||
|
fzf = "${pkgs.fzf}/bin/fzf";
|
||||||
|
find = "${pkgs.findutils}/bin/find";
|
||||||
|
in
|
||||||
|
lib.mkDefault (pkgs.writeShellScriptBin "tmux-sessionizer" ''
|
||||||
if [[ $# -eq 1 ]]; then
|
if [[ $# -eq 1 ]]; then
|
||||||
selected=$1
|
selected=$1
|
||||||
else
|
else
|
||||||
selected=$(find -L ${lib.concatStringsSep " " cfg.paths} -mindepth 1 -maxdepth 1 -type d | fzf)
|
selected=$(${find} -L ${lib.concatStringsSep " " cfg.paths} -mindepth 1 -maxdepth 1 -type d | ${fzf})
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z $selected ]]; then
|
if [[ -z $selected ]]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
selected_name=$(basename "$selected" | tr . _)
|
selected_name=$(${basename} "$selected" | ${tr} . _)
|
||||||
tmux_running=$(pgrep tmux)
|
tmux_running=$(${pgrep} tmux)
|
||||||
|
|
||||||
if [[ -z $TMUX ]] && [[ -z $tmux_running ]]; then
|
if [[ -z $TMUX ]] && [[ -z $tmux_running ]]; then
|
||||||
tmux new-session -s "$selected_name" -c "$selected"
|
${tmux} new-session -s "$selected_name" -c "$selected"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! tmux has-session -t="$selected_name" 2>/dev/null; then
|
if ! ${tmux} has-session -t="$selected_name" 2>/dev/null; then
|
||||||
tmux new-session -ds "$selected_name" -c "$selected"
|
${tmux} new-session -ds "$selected_name" -c "$selected"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
tmux switch-client -t "$selected_name"
|
${tmux} switch-client -t "$selected_name"
|
||||||
'';
|
'');
|
||||||
});
|
|
||||||
|
|
||||||
home.packages = [ cfg.pkg ];
|
home.packages = [
|
||||||
|
config.snowhawk.tmux.sessionizer.pkg
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{ lib, config, pkgs, ... }:
|
{ lib, config, pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib) getExe optionalString;
|
|
||||||
|
|
||||||
cfg = config.snowhawk.tmux;
|
cfg = config.snowhawk.tmux;
|
||||||
sessionizer = cfg.sessionizer;
|
sessionizer = cfg.sessionizer;
|
||||||
in
|
in
|
||||||
|
@ -14,7 +12,7 @@ in
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
programs.tmux = {
|
programs.tmux = {
|
||||||
enable = true;
|
enable = true;
|
||||||
shell = getExe pkgs.fish;
|
shell = "${pkgs.fish}/bin/fish";
|
||||||
mouse = true;
|
mouse = true;
|
||||||
baseIndex = 1;
|
baseIndex = 1;
|
||||||
terminal = "screen-256color";
|
terminal = "screen-256color";
|
||||||
|
@ -39,8 +37,8 @@ in
|
||||||
|
|
||||||
bind '"' split-window -v -c "#{pane_current_path}"
|
bind '"' split-window -v -c "#{pane_current_path}"
|
||||||
bind % split-window -h -c "#{pane_current_path}"
|
bind % split-window -h -c "#{pane_current_path}"
|
||||||
'' + optionalString sessionizer.enable ''
|
|
||||||
bind-key -r f run-shell "tmux neww ${getExe sessionizer.pkg}"
|
${lib.optionalString sessionizer.enable ''bind-key -r f run-shell "tmux neww ${sessionizer.pkg}/bin/tmux-sessionizer"''}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -65,18 +65,6 @@ in
|
||||||
systemctl suspend
|
systemctl suspend
|
||||||
'')
|
'')
|
||||||
|
|
||||||
(writeShellScriptBin "tv-on" ''
|
|
||||||
xrandr \
|
|
||||||
--output DP-0 --primary --mode 1920x1080 --pos 1920x1080 --rotate normal \
|
|
||||||
--output HDMI-0 --mode 1920x1080 --pos 0x1080 --rotate normal \
|
|
||||||
--output HDMI-1 --mode 1920x1080 --pos 1920x0 --rotate normal \
|
|
||||||
--output DP-1 --off \
|
|
||||||
--output DP-2 --off \
|
|
||||||
--output DP-3 --off \
|
|
||||||
--output DP-4 --off \
|
|
||||||
--output DP-5 --off
|
|
||||||
'')
|
|
||||||
|
|
||||||
feh
|
feh
|
||||||
imagemagick
|
imagemagick
|
||||||
uhk-agent
|
uhk-agent
|
||||||
|
|
Loading…
Reference in New Issue