Compare commits

...

2 Commits

Author SHA1 Message Date
Sage Vaillancourt 99c56b8bd1 Merge branch 'main' of https://git.sagev.space/sage/dotfiles 2024-03-22 11:19:53 -04:00
Sage Vaillancourt 246a358a4b Newly service-based sofi
suckto automatically converts spaces to hyphens in branch names
Some ideavimrc tweaks
2024-03-22 11:17:32 -04:00
5 changed files with 49 additions and 22 deletions

View File

@ -0,0 +1,5 @@
[Unit]
Description=Sofi listing update
[Service]
ExecStart=%h/.sofi.sh --update-listings

View File

@ -0,0 +1,9 @@
[Unit]
Description=Update sofi listings every 20 minutes
[Timer]
OnCalendar=*:0/20
Persistent=true
[Install]
WantedBy=timers.target

View File

@ -27,6 +27,12 @@ autocmd BufWinEnter *.* silent loadview
set viewoptions-=options
set nohlsearch
command! DD action CloseAllEditorsButActive
command! Dd action CloseAllEditorsButActive
command! Qa action CloseAllUnmodifiedEditors
command! QA action CloseAllUnmodifiedEditors
" Save with sudo
cnoremap w!! execute 'silent! write !sudo tee % >/dev/null' <bar> edit!
set ideajoin

View File

@ -30,7 +30,7 @@ function slides() {
}
function suckto {
local dest_branch="$1"
local dest_branch="$(echo "$@" | sed 's/ /-/g')"
changed_files="$(git status --porcelain=v1 2>/dev/null | wc -l)"
git suck
git switch -c "$dest_branch"

View File

@ -55,6 +55,12 @@ windows() {
}
read_apps() {
if [[ "$1" == "--now" ]]; then
find $APP_LOCATIONS -name '*.desktop' -exec grep '^Name=' {} \; |
egrep -iv "$IGNORED_APPS" |
sed 's/Name=/app /'
return $?
fi
cat "$CACHE_FILE"
# shellcheck disable=SC2086
nohup find $APP_LOCATIONS -name '*.desktop' -exec grep '^Name=' {} \; |
@ -69,8 +75,8 @@ read_snap_apps() {
}
apps() {
read_apps
read_snap_apps
read_apps $1
read_snap_apps $1
}
RECENTS="$HOME/.sofi-recent"
@ -114,27 +120,28 @@ system_info() {
echo "inf $(date)"
}
if [[ "$1" == "--print-only" ]]; then
print-only() {
cat \
<(system_info) \
<(windows) \
<($HOME/.rofi-list-git-repos.py --no-icon) \
<(apps) \
<(apps $1) \
<(list_files) \
$HOME/.emojis
}
if [[ "$1" == "--print-only" ]]; then
print-only
exit 1
fi
if [[ "$1" == "--update-listings" ]]; then
print-only --now > "$HOME/.sofi-listings"
exit 0
fi
if [[ "$1" == "" ]]; then
choice="$(cat \
<(recent) \
<(echo -e "Recents:\n") \
<(system_info) \
<(windows) \
<($HOME/.rofi-list-git-repos.py --no-icon) \
<(apps) \
<(list_files) \
"$HOME/.emojis" \
| fzf --print-query --preview="$HOME/.sofi-preview.sh {} {q}")"
choice="$(cat <(recent) "$HOME/.sofi-listings" | fzf --print-query --preview="$HOME/.sofi-preview.sh {} {q}")"
else
choice="$(cat <($1) | fzf --print-query --preview="$HOME/.sofi-preview.sh {} {q}")"
fi