nextcloud updates and hyprland cache

This commit is contained in:
Rouven Seifert 2023-03-26 14:27:15 +02:00
parent 5e53086882
commit c5ec676f38
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
5 changed files with 93 additions and 54 deletions

View file

@ -4,7 +4,7 @@
programs.git = {
enable = true;
userName = "Rouven Seifert";
userEmail = config.accounts.email.accounts."TU-Dresden".address;
userEmail = "rouven@rfive.de";
extraConfig = {
core.pager = "delta";
interactive.diffFilter = "delta --color-only";

View file

@ -54,9 +54,9 @@
''
function c() {
if [ $# -eq 0 ]; then
cd $(find -maxdepth 4 -not -path '*[cC]ache*' -not -path '*[tT]rash*' -type d | fzf --preview 'tree -C {}')
cd $(find -maxdepth 4 -not -path '*[cC]ache*' -not -path '*[tT]rash*' -type d | fzf --preview '${pkgs.tree}/bin/tree -C {}')
else
$1 $(find -maxdepth 5 -not -path '*[cC]ache*' -not -path '*[tT]rash*' | fzf --preview 'tree -C {}')
$1 $(find -maxdepth 5 -not -path '*[cC]ache*' -not -path '*[tT]rash*' | fzf --preview '${pkgs.tree}/bin/tree -C {}')
fi
}