Browse Source

quick fix

main
pvincent 3 days ago
parent
commit
6ef049fc78
  1. 5
      lib/initiate.bash

5
lib/initiate.bash

@ -95,7 +95,7 @@ function link_config_files {
function force_reload { function force_reload {
bind -f /etc/inputrc 2>/dev/null # arch: dismiss harmless warning bind -f /etc/inputrc 2>/dev/null # arch: dismiss harmless warning
exec bash
source /etc/bash.bashrc
} }
function in_azerty_zone { function in_azerty_zone {
@ -122,15 +122,12 @@ function ghostty_global_config {
[[ ! -d /etc/ghostty ]] && mkdir -p /etc/ghostty [[ ! -d /etc/ghostty ]] && mkdir -p /etc/ghostty
local global_config=/etc/ghostty/config local global_config=/etc/ghostty/config
local asset_config="$MIAOU_BASH_DIR"/assets/ghostty/config local asset_config="$MIAOU_BASH_DIR"/assets/ghostty/config
local change=false
if [[ ! -f "$global_config" ]]; then if [[ ! -f "$global_config" ]]; then
cp "$asset_config" "$global_config" cp "$asset_config" "$global_config"
echo 'ghostty global config created' echo 'ghostty global config created'
change=true
elif ! cmp -s "$asset_config" "$global_config"; then elif ! cmp -s "$asset_config" "$global_config"; then
cp "$asset_config" "$global_config" cp "$asset_config" "$global_config"
echo 'ghostty global config replaced' echo 'ghostty global config replaced'
change=true
fi fi
if [[ ! -f /etc/skell/.config/ghostty/config ]]; then if [[ ! -f /etc/skell/.config/ghostty/config ]]; then

Loading…
Cancel
Save