diff --git a/home-manager/modules/hypr/hypr.nix b/home-manager/modules/hypr/hypr.nix index 2b2590c..d0af7d2 100644 --- a/home-manager/modules/hypr/hypr.nix +++ b/home-manager/modules/hypr/hypr.nix @@ -48,6 +48,7 @@ "wal -R &" # "hyprpaper &" "swww-daemon &" + "swww img ~/Pictures/wallpaper.png &" # "hyprctl hyprpaper reload ,~/Pictures/wallpaper.png" "hyprpanel &" "gsettings set org.gnome.desktop.interface cursor-theme '${config.home.pointerCursor.name}'" diff --git a/home-manager/modules/zsh/select_command.sh b/home-manager/modules/zsh/select_command.sh index c1785b9..7f22605 100755 --- a/home-manager/modules/zsh/select_command.sh +++ b/home-manager/modules/zsh/select_command.sh @@ -1,5 +1,8 @@ -SAVED_MODES_FILE="~/.saved_modes" -TEMP_FILE="~/.saved_modes.tmp" +SAVED_MODES_FILE=".saved_modes" +TEMP_FILE=".saved_modes.tmp" + +SAVED_MODES_FILE="$HOME/$SAVED_MODES_FILE" +TEMP_FILE="$HOME/$TEMP_FILE" # TODO: упростить работу с fzf # либо сделать вход сразу с fuzzy diff --git a/home-manager/modules/zsh/zsh.nix b/home-manager/modules/zsh/zsh.nix index 0fafa65..2471260 100644 --- a/home-manager/modules/zsh/zsh.nix +++ b/home-manager/modules/zsh/zsh.nix @@ -87,7 +87,7 @@ grepps = "ps -A | grep"; try = ''f() { nix-shell -p "$@" --run zsh; unset -f f; }; f''; - wttr = "curl wttr.in/Ramenki?p1MQ"; + wttr = "curl wttr.in/Ramenki\\?p1MQ"; gitpa = ''f() { git add -A && git commit -m "$1" && git push; }; f'';