Update configs
This commit is contained in:
parent
72da0ef04a
commit
12349398f3
7 changed files with 18 additions and 5 deletions
3
.bin/.e
3
.bin/.e
|
@ -18,7 +18,8 @@ declare -A mapper=(
|
|||
["nvim"]="$HOME/.config/nvim/"
|
||||
["nvim.packer"]="$HOME/.config/nvim/lua/plugins.lua"
|
||||
["polybar"]="$HOME/.config/polybar"
|
||||
["qutebrowser"]="$HOME/.config/qutebrowser/common.py"
|
||||
["qutebrowser"]="$HOME/.config/qutebrowser/config.py"
|
||||
["qutebrowser-kiosk"]="$HOME/.config/qutebrowser/config_kiosk.py"
|
||||
["starship"]="$HOME/.config/starship.toml"
|
||||
["sxhkd"]="$HOME/.config/sxhkd/sxhkdrc"
|
||||
["vim"]="$HOME/.config/vim/vimrc"
|
||||
|
|
|
@ -35,4 +35,3 @@ fi
|
|||
#fi
|
||||
|
||||
printf "\n\n\n\n=== DONE ============================================================\n"
|
||||
read -r
|
||||
|
|
|
@ -63,12 +63,18 @@ _autostart_manage_sync () {
|
|||
done
|
||||
}
|
||||
|
||||
|
||||
_get_autostart_cmd () {
|
||||
_query_autostart_toml 'select((.key == "'"$1"'") or (.value.alias == "'"$1"'")) | .value.command'
|
||||
}
|
||||
|
||||
_get_autostart_delay () {
|
||||
_query_autostart_toml 'select((.key == "'"$1"'") or (.value.alias == "'"$1"'")) | .value.delay // 0'
|
||||
}
|
||||
|
||||
_autostart_manage_exec () {
|
||||
cmd=$(_get_autostart_cmd "$1")
|
||||
sleep "$(_get_autostart_delay "$1")"
|
||||
bash -c "$cmd"
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue