如何轻松更改为 Smalltalk Squeak/Pharo 中的原生字体
对于每一个新的 Squeak/Pharo 图像,我都会立即将字体更改为某些本机版本。 这是很多次鼠标点击,我想编写该过程的脚本。
With every new Squeak/Pharo image, I immediately change the fonts to some native version. It is a lot of mouseclicks and I want to script the process.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
上面的答案现在可能已经过时了,至少它不适用于我的 3.10 图像。 所以,我用这个:
The above answer might be outdated by now, at least it doesn't work with my 3.10 image. so, I use this:
找到答案,正在寻找setSystemFontTo。 完整的脚本现在是:
Found the answer, was looking for setSystemFontTo. The complete script is now:
这是在 Pharo 中执行此操作的新方法:
This is the new way to do it in Pharo:
在使用 Pharo 2.0 的 Linux 上,我将以下内容添加到在 Image 启动时自动读取的特殊目录中的文件中:
来显示。
此特殊目录可以通过You should read the Documentation of StartupLoader 类
On Linux with Pharo 2.0, I added the following content to a file in a special directory that is read automatically on Image startup:
This special directory can be revealed with
You should read the documentation of the StartupLoader class.