2024-05-03 10:46:09 -06:00
|
|
|
//go:build unix && (!darwin)
|
2024-05-06 21:25:25 -06:00
|
|
|
package registrar
|
2024-04-29 14:21:53 -06:00
|
|
|
|
2024-05-28 19:56:52 -06:00
|
|
|
import "os"
|
|
|
|
import "log"
|
2024-06-03 01:04:29 -06:00
|
|
|
import "git.tebibyte.media/tomo/backend/x"
|
2024-04-29 14:21:53 -06:00
|
|
|
import "git.tebibyte.media/tomo/tomo"
|
2024-06-03 01:04:29 -06:00
|
|
|
import "git.tebibyte.media/tomo/nasin/internal/theme/icons/xdg"
|
|
|
|
import "git.tebibyte.media/tomo/nasin/internal/theme/icons/fallback"
|
|
|
|
import "git.tebibyte.media/tomo/nasin/internal/theme/style/fallback"
|
2024-04-29 14:21:53 -06:00
|
|
|
|
2024-05-03 10:46:09 -06:00
|
|
|
func Init () error {
|
2024-06-03 01:04:29 -06:00
|
|
|
theme := fallbackStyle.New()
|
2024-05-28 19:56:52 -06:00
|
|
|
|
|
|
|
iconThemeName := os.Getenv("TOMO_XDG_ICON_THEME")
|
|
|
|
if iconThemeName != "" {
|
2024-05-28 20:13:42 -06:00
|
|
|
iconTheme, err := xdgIcons.FindThemeWarn(iconThemeName, theme.IconTheme)
|
2024-05-28 19:56:52 -06:00
|
|
|
if err == nil {
|
|
|
|
theme.IconTheme = iconTheme
|
|
|
|
} else {
|
|
|
|
log.Printf("nasin: could not load icon theme '%s': %v", iconThemeName, err)
|
|
|
|
}
|
|
|
|
}
|
2024-06-03 01:04:29 -06:00
|
|
|
|
|
|
|
if theme.IconTheme == nil {
|
|
|
|
theme.IconTheme = fallbackIcons.New()
|
|
|
|
}
|
2024-05-28 19:56:52 -06:00
|
|
|
|
|
|
|
tomo.SetTheme(theme)
|
2024-06-03 01:04:29 -06:00
|
|
|
tomo.Register(1, x.New)
|
2024-05-03 10:46:09 -06:00
|
|
|
return nil
|
2024-04-29 14:21:53 -06:00
|
|
|
}
|