This commit is contained in:
Steph 2024-11-21 21:06:08 +01:00
parent fd17d28a05
commit c1ef14cfd4
6 changed files with 72 additions and 28 deletions

View File

Before

Width:  |  Height:  |  Size: 2.4 MiB

After

Width:  |  Height:  |  Size: 2.4 MiB

View File

@ -57,5 +57,6 @@
executable = true; executable = true;
source = "${./git-identity.sh}"; source = "${./git-identity.sh}";
}; };
home.file.".background-image".source = "${./background-image.jpg}";
}; };
} }

View File

@ -32,6 +32,7 @@
wl-clipboard wl-clipboard
zotero zotero
signal-desktop signal-desktop
freetube
]; ];
dconf.settings = { dconf.settings = {
@ -84,6 +85,4 @@
"picture-uri" = "${config.home.homeDirectory}/.background-image"; "picture-uri" = "${config.home.homeDirectory}/.background-image";
}; };
}; };
home.file.".background-image".source = "${./.}/Morskie Oko.jpg";
} }

View File

@ -1,6 +1,7 @@
{config, lib, pkgs, inputs, os, ...} : { {config, lib, pkgs, inputs, os, ...} : {
programs.bash.enable = true; programs.bash.enable = true;
programs.bash.bashrcExtra = '' programs.bash.bashrcExtra = lib.concatStrings [
''
if [ -n "$PS1" ]; then if [ -n "$PS1" ]; then
NEW_PROMPT_COMMAND=' NEW_PROMPT_COMMAND='
MY_PWD="$PWD" MY_PWD="$PWD"
@ -25,9 +26,16 @@ $NEW_PROMPT_COMMAND"
export PS1="[\t \[\e[32m\]\u\[\e[m\]\[\e[32m\]@\[\e[m\]\[\e[32m\]\h\[\e[m\]]"'$SHELL_PREFIX'" \[\e[36m\]"'$TRIMMED_PWD'"\[\e[m\] \$ " export PS1="[\t \[\e[32m\]\u\[\e[m\]\[\e[32m\]@\[\e[m\]\[\e[32m\]\h\[\e[m\]]"'$SHELL_PREFIX'" \[\e[36m\]"'$TRIMMED_PWD'"\[\e[m\] \$ "
fi fi
''
# On mac we have to import brew
(if (os == "darwin") then ''
eval "$(/opt/homebrew/bin/brew shellenv)" eval "$(/opt/homebrew/bin/brew shellenv)"
''; '' else ''
'')
];
programs.bash.shellAliases = { programs.bash.shellAliases = {
chmod = "chmod --preserve-root"; chmod = "chmod --preserve-root";
chown = "chown --preserve-root"; chown = "chown --preserve-root";

View File

@ -28,4 +28,40 @@
} ; } ;
} ; } ;
}; };
home.packages = let
edit = (pkgs.writeShellApplication {
name = "edit";
text = ''
CMND=$(cat <<'END'
BUFFER_NAME=''$(echo -n "''$PWD" | xxd -ps -c 200 | tr -d '\n' | shasum | head -c -4)
tmux -L "$BUFFER_NAME" has-session -t "$BUFFER_NAME" || {
tmux -L "$BUFFER_NAME" new-session -d -s "$BUFFER_NAME" "BUFFER_NAME=$BUFFER_NAME EDITOR=wraphx lf"
tmux -L "$BUFFER_NAME" set -g status off
tmux -L "$BUFFER_NAME" set -g pane-border-style fg=#0c0c0c
tmux -L "$BUFFER_NAME" set -g pane-active-border-style "bg=default fg=#0c0c0c"
}
tmux -L "$BUFFER_NAME" attach -t "$BUFFER_NAME"
END
)
if [ -f "shell.nix" ] && [ -z ''${IN_NIX_SHELL+x} ]; then
nix-shell --command "$CMND"
else
eval "$CMND"
fi
'';
});
wraphx = (pkgs.writeShellApplication {
name = "wraphx";
text = ''
test "$(tmux -L "$BUFFER_NAME" list-panes | wc -l)" -eq 1 && {
tmux -L "$BUFFER_NAME" split-window -h hx "$1"
}
'';
});
in [ edit wraphx ];
} }

View File

@ -189,7 +189,7 @@ let
}); });
}); });
kak-wrap = (writeShellApplication { kak-wrap = (writeShellApplication {
name = "edit"; name = "edit-kak";
runtimeInputs = [ myKakoune ]; runtimeInputs = [ myKakoune ];
text = '' text = ''
CMND=$(cat <<'END' CMND=$(cat <<'END'