Hexo next favicon

把图标放在 hexo\source\images 目录下,这个目录没有可以自己手动创建 修改 next主题配置文件,\next\themes\next_config.yml 文件 1 2 3 4 5 6 7 8 favicon: small: /images/favicon-16x16-next.png #medium: /images/favicon-32x32-next.png medium: /images/favicon.ico apple_touch_icon: /images/apple-touch-icon-next.png safari_pinned_tab: /images/logo.svg #android_manifest: /images/manifest.json #ms_browserconfig: /images/browserconfig.xml

二月 11, 2023 · 1 分钟 · 29 字 · HCY

Podman hexo

“hexo s” 在本地运行预览的端口是 4000 1 podman run -it --name=hexoenv -p 4000:4000 -v /home/hcy/Gateway/hexo_blogs:/home/devenv/hexo/source hexoenv /bin/bash 只需要把 source 文件夹暴露出来给 host 就行了 为了多端同步,推送不用 “hexo d” , 而是手动将 public 下的内容推到 github.io 那里

二月 11, 2023 · 1 分钟 · 29 字 · HCY

Podman GUI Wayland/X11

首先打开终端(我的容器使用 Linux 主机下的 podman cli 终端操作) 允许容器访问 xhost,在终端里面输入 1 xhost + run 容器即可 1 podman run -it --net=host -e DISPLAY=$DISPLAY --name=devenv -v /home/hcy/Gateway/:/home/devenv/Gateway devenv /bin/bash 参数解释: 1 ... -it ... /bin/bash // 进入交互模式 1 ... --net=host ... // 允许访问 host 网络 1 ... -e DISPLAY=$DISPLAY ... // 使用 host 的显示 1 ... --name=devenv ... // 指定启动之后容器的名字 1 2 3 ... -v /home/hcy/Gateway/:/home/devenv/Gateway ... // 将 host 的 /home/hcy/Gateway/ 映射到 container 的 /home/devenv/Gateway 1 ... devenv ... // 镜像名字

二月 11, 2023 · 1 分钟 · 78 字 · HCY

Debian 安装中文环境

先查看是否有中文语言环境 1 locale -a 安装语言环境(root权限)记得选 zh_CN-utf8 1 dpkg-reconfigure locales 安装中文字体 1 apt-get install *wqy*

一月 3, 2023 · 1 分钟 · 14 字 · HCY

Podman + X11 环境运行 GUI 程序

podman 运行 GUI 应用 首先 host 的环境,也就是宿主机的桌面环境得是 X11 ,Wayland 是不行的 允许 podman 访问 xserver 在 host 上运行 1 xhost +"local:podman@" 如果不行,那就加 sudo 试一下 创建并且启动 podman 容器 这个建议在 rootless 下执行,在 Arch Linux 下测试是可以 rootless 运行这条命令的 1 podman run --privileged -it -e DISPLAY=$DISPLAY -v /tmp/.X11-unix/:/tmp/.X11-unix:rw -v /home/hcy/Share/:/share ubuntu 老规矩,不行就加上 sudo “-v” 选项是 verbose ,也就是映射,上面第二个要根据自己的情况而定,这个映射是为了宿主与容器共享文件夹 ubuntu 是你需要的 image 名称,可以换成其他的名称 安装 X11 应用并测试 完成第三步之后,就已经自动进入到容器交互界面里面了 以 ubunut 为例子,先更新 apt 1 apt update 1 apt upgrade 安装文字编辑器(非GUI) ...

十二月 30, 2022 · 1 分钟 · 204 字 · HCY