little fix

This commit is contained in:
2025-11-30 15:34:50 +03:00
parent 497f33adcc
commit 4ff652145b
3 changed files with 7 additions and 3 deletions
+1
View File
@@ -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}'"
+5 -2
View File
@@ -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
+1 -1
View File
@@ -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'';