1
0
forked from x/icebergs
2023-12-20 23:59:46 +08:00

18 lines
423 B
Go

package macos
import (
ice "shylinux.com/x/icebergs"
"shylinux.com/x/icebergs/base/aaa"
"shylinux.com/x/icebergs/base/mdb"
)
const DOCK = "dock"
func init() {
Index.MergeCommands(ice.Commands{
DOCK: {Help: "工具栏", Actions: ice.MergeActions(ice.Actions{}, aaa.RoleAction(), CmdHashAction(), mdb.ExportHashAction())},
})
}
func DockAppend(m *ice.Message, icon, index string) { install(m, DOCK, icon, index) }