pleb: use ir_black textcolors

This commit is contained in:
2026-07-30 10:20:09 -07:00
parent 398b7dfa81
commit be040c06d6
7 changed files with 1321 additions and 641 deletions
+2 -8
View File
@@ -1,11 +1,5 @@
[HotButtons]
Page1Button3=H0,@-1,0000000000000000,0,,
Page1Button4=H1,@-1,0000000000000000,0,,
Page1Button5=H2,@-1,0000000000000000,0,,
Page1Button6=G10,@-1,0000000000000000,0,,
Page1Button9=G4,@-1,0000000000000000,0,,
Page1Button10=G12,@-1,0000000000000000,0,,
Page1Button12=M-1,A633,P3m000u0000D0000,177708,,Boots of the Long Road
Page1Button12=M-1,A633,wGy000u0000I0000,177708,,Boots of the Long Road
Page1Button1=I2,@-1,0000000000000000,0,Pet attack,
[Defaults]
AutoConsentGroup=1
@@ -23,6 +17,7 @@ UseImpliedHealing=0
AutoAttackRangeAutoSwitch=1
SuppressOutOfRangeWarnings=0
SuppressAttackWarnings=0
AutoSkillsLO0=30,0,0,0,0,0,0,0
[Friends]
SendToUChat=0
[BlockedSpells]
@@ -62,4 +57,3 @@ Page1Button4Line1=/corpse Tanto
Page1Button2Line1=/assist main
Page1Button2Line2=/pause 6
Page1Button2Line3=/pet attack
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -21,9 +21,16 @@ player_configs=(
"${source_dir}"/[!_]*_*.ini
)
# The client creates Backup_N copies while saving layouts. They are transient
# snapshots, not the current configuration we track.
configs=("${source_dir}/eqclient.ini")
for config in "${player_configs[@]}"; do
[[ "$(basename -- "${config}")" == *Backup* ]] && continue
configs+=("${config}")
done
# Player settings use Character_Server.ini, Character_Server_Class.ini, and
# UI_Character_Server_Class.ini names. Launcher INIs do not match this shape.
configs=("${source_dir}/eqclient.ini" "${player_configs[@]}")
for config in "${configs[@]}"; do
destination="${script_dir}/$(basename -- "${config}")"
+34
View File
@@ -0,0 +1,34 @@
#!/usr/bin/env bash
set -euo pipefail
destination_dir="${EQL_GAME_PATH:-${HOME}/Games/EverQuestLegends}"
script_dir=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)
configs=(
"eqclient.ini"
"Pleb_oggok_LO1.ini"
"UI_Pleb_oggok_LO1.ini"
)
if [[ ! -d "${destination_dir}" ]]; then
echo "Error: EverQuest Legends directory not found: ${destination_dir}" >&2
echo "Set EQL_GAME_PATH to the game install directory." >&2
exit 1
fi
for config in "${configs[@]}"; do
source="${script_dir}/${config}"
if [[ ! -f "${source}" ]]; then
echo "Error: tracked configuration not found: ${source}" >&2
exit 1
fi
done
for config in "${configs[@]}"; do
source="${script_dir}/${config}"
destination="${destination_dir}/${config}"
cp -- "${source}" "${destination}"
echo "Updated eql/${config}"
done
echo "Pushed ${#configs[@]} config file(s) to ${destination_dir}"