[GH-ISSUE #469] Customizing favicon, page title, font/font color #259

Closed
opened 2026-04-08 16:51:34 +03:00 by zhus · 3 comments
Owner

Originally created by @spoisseroux on GitHub (Oct 23, 2024).
Original GitHub issue: https://github.com/sigoden/dufs/issues/469

I see here that Dufs UI is able to be customized, but I'm not really sure how to go about doing it without creating a whole new UI. I just want to change things like the page title, favicon, and font/font-color. Is it possible to do this simply?

Originally created by @spoisseroux on GitHub (Oct 23, 2024). Original GitHub issue: https://github.com/sigoden/dufs/issues/469 I see [here](https://github.com/sigoden/dufs?tab=readme-ov-file#customize-ui) that Dufs UI is able to be customized, but I'm not really sure how to go about doing it without creating a whole new UI. I just want to change things like the page title, favicon, and font/font-color. Is it possible to do this simply?
zhus closed this issue 2026-04-08 16:51:34 +03:00
Author
Owner

@sigoden commented on GitHub (Oct 23, 2024):

If you only need to make slight adjustments to the current user interface, you can modify it based on the dufs's assets.

git clone https://github.com/sigoden/dufs
cd dufs
cp assets/ new-assets/
# Modify new-assets to match your needs.
dufs --assets new-asets
<!-- gh-comment-id:2430620156 --> @sigoden commented on GitHub (Oct 23, 2024): If you only need to make slight adjustments to the current user interface, you can modify it based on the dufs's [assets](https://github.com/sigoden/dufs/tree/main/assets). ```sh git clone https://github.com/sigoden/dufs cd dufs cp assets/ new-assets/ # Modify new-assets to match your needs. dufs --assets new-asets ```
Author
Owner

@sigoden commented on GitHub (Oct 23, 2024):

The UI doesn't use any frameworks, just plain html/js/css. As long as you have some basic knowledge of web development, it shouldn't be difficult to modify.

assets/
├── favicon.ico
├── index.css
├── index.html
└── index.js
<!-- gh-comment-id:2430624108 --> @sigoden commented on GitHub (Oct 23, 2024): The UI doesn't use any frameworks, just plain html/js/css. As long as you have some basic knowledge of web development, it shouldn't be difficult to modify. ``` assets/ ├── favicon.ico ├── index.css ├── index.html └── index.js ```
Author
Owner

@spoisseroux commented on GitHub (Oct 23, 2024):

Thank you! Exactly what I needed to know, sorry about the trouble

<!-- gh-comment-id:2430813120 --> @spoisseroux commented on GitHub (Oct 23, 2024): Thank you! Exactly what I needed to know, sorry about the trouble
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: sigoden/dufs#259