diff options
| author | filip <“filip.rabiega@gmail.com”> | 2026-01-21 10:36:12 +0100 |
|---|---|---|
| committer | filip <“filip.rabiega@gmail.com”> | 2026-01-21 10:36:12 +0100 |
| commit | 88f0243428c4cf39029c8ffc5a7e1634951158a0 (patch) | |
| tree | f8b05b9f056dd72b7955f90560c453b4c317bd92 /via-feed | |
| parent | 83954961af8b6337da100e038561f2fd975ac1fe (diff) | |
| download | chadscripts-88f0243428c4cf39029c8ffc5a7e1634951158a0.tar.gz chadscripts-88f0243428c4cf39029c8ffc5a7e1634951158a0.tar.bz2 chadscripts-88f0243428c4cf39029c8ffc5a7e1634951158a0.zip | |
add comments to some scripts
Diffstat (limited to 'via-feed')
| -rwxr-xr-x | via-feed | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -5,8 +5,15 @@ cache="$HOME/.cache/via" if [[ "$1" == "-r" ]] || [[ ! -e "$cache" ]]; then cat "$HOME/.config/via/shortcuts" > "$cache" cat "$HOME/.config/via/websites" >> "$cache" - find "$HOME" -mindepth 1 \( -type d -name ".*" ! -path "$HOME/.scripts" -o -path "$HOME/cell" -o -path "$HOME/phone/*" \) -prune -o -print | sort >> "$cache" - # notify-send "via cache updated." + find "$HOME" -mindepth 1 \ + \( \ + -type d -name ".*" ! -path "$HOME/.scripts" \ + -o -path "$HOME/cell" \ + -o -path "$HOME/phone/*" \ + \) -prune \ + -o -print \ + | sort >> "$cache" + # notify-send "via cache updated." fi if [ "$CRON" = "1" ]; then |
