diff --git a/apply_css.sh b/apply_css.sh
index f9a78b5f..961f9404 100755
--- a/apply_css.sh
+++ b/apply_css.sh
@@ -14,15 +14,15 @@ find "$HTML_DIR" -name "*.html" -type f | while read html_file; do
# Check if the CSS link is already present
if ! grep -q "$CSS_FILE" "$html_file"; then
# Insert the custom CSS link after doxygen.css
- if [[ "$OSTYPE" == "darwin"* ]]; then
+ # if [[ "$OSTYPE" == "darwin"* ]]; then
# macOS
sed -i '' '/doxygen.css/a\
' "$html_file"
- else
- # Linux
- sed -i '/css_themes/general.css/a ' "$html_file"
- fi
+ # else
+ # # Linux
+ # sed -i '/css_themes/general.css/a ' "$html_file"
+ # fi
echo "Injected CSS into: $html_file"
fi
done