👋 Welcome to my homepage!
- I’m a developer also known as Ming.
👋 Welcome to my homepage!
Setting Linux Desktop Appearance ref: Icons - Arch Wiki GTK - Arch Wiki FreeDesktop icon theme spec Icon Setting Appearance includes icon and gtk-theme. Icon is included in FreeDesktop Icon Theme Specification, that means it’s generally usable. the icon path: /usr/share/icons/ ~/.icons ~/.local/share/icons/ Configure Cursor Download Cursor file to icon path. Setting gsettings set cursor theme, but it only work for gtk program gsettings set org.gnome.desktop.interface cursor-theme '<THEME_NAME>' For it work on all appliaction, config sway configure: seat seat0 xcursor_theme <THEME_NAME> 24 Theme Setting gtk-theme configure the gtk style and behavior, it is only for gtk applications....
Emoji ctrl + ., but it only works under gtk application. to adapt all application, u can install it.mijorus.smile and map a shortcut. flatpak insatll it.mijorus.smile flatpak run it.mijorus.smile Unicode Method Press ctrl + shift + u, then input the unicode. Alternate Characters Key/Alt Gr Alernate Character Key is a modifier key, ussally labeed Alt Gr, similar to shift. It asks the inpute source support the AltGr layout, then you can press Alternate Character Key and other Key to called a character which in AltGr layout....
Linux 平台下 OCR 解决方案 软件要求 flameshot(截图工具) tesseract(OCR工具) wl-clipboard(wayland的剪贴板工具)如果桌面运行在x环境,选择xsel 编写脚本 #!/bin/bash # prerequiste thoes app: `flameshot`, `tesseract`, `wl-clipboard`. # Create a temporary directory TMPDIR=$(mktemp -d) # Take a screenshot of a selected area and save it as screenshot.png in the temporary directory flameshot gui -p $TMPDIR/screenshot.png # Process the screenshot with Tesseract and save the result to a text file in the temporary directory tesseract $TMPDIR/screenshot.png $TMPDIR/output # Copy the result to the clipboard (Wayland) # ignore all non-ASCII characters cat $TMPDIR/output....
RClone 教程 环境:Linux 平台:OneDrive 参考文献: Linux使用RClone挂载OneDrive网盘 使用该云盘方案从文件操作感受上类似挂载了一个物理硬盘,可以选择性挂载位置,也可以解挂载。 安装 rclone gentoo 安装: emerge -a net-misc/rclone emerge -a sys-fs/fuse 配置 rclone 进入配置的交互界面命令: rclone config 交互界面具体操作示例(以OneDrive为例): ming@assassin:~$ rclone config No remotes found, make a new one? n) New remote s) Set configuration password q) Quit config n/s/q> n Enter name for new remote. name> Main OneDrive Option Storage. Type of storage to configure. Choose a number from below, or type in your own value....
Backup for Linux 该教程为 Linux 平台下类 Mac 平台下的 Time Machine 的解决方案。 Mac下的 Time Machine 的特性是可以记录不同时间点的文件状态,且是增量更新。 可行性方案 通过查询发现可行性解决方案有以下几种: timeshift Btrfs Assistant btrbk DIY in btrfs 最后选择了 DIY in btrfs 的方式进行备份。 To save my time and energy, I have write a script to help me backup quickly. You can access the github repo if you are interested in it. 标准操作 该操作流程适合初次使用该教程的新人。 First, you need to create a Btrfs partition on your backup device....