摘要: 新建文件 test.3ab 右键-打开方式-选择默认程序 打开注册表编辑器 HKEY_CLASSES_ROOT\.3ab 重命名为 . HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.3ab 阅读全文
posted @ 2022-10-08 10:02 cliter 阅读(446) 评论(0) 推荐(1) 编辑
摘要: KDE 环境 错误信息: /bin/bash crashed can not concat kdeinit5 重置 KDE cd ~/.config/ rm -r backup/* mv plasma* backup/ mv kde* backup/ mv session backup/ mv xs 阅读全文
posted @ 2022-10-07 09:55 cliter 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 软件 sudo apt install fcitx5 fcitx5-rime 配置 下载小鹤音形鼠须管 for macos,将 rime 放到 ~/.local/share/fcitx5 运行 fcitx5-configtool,添加 Rime From: https://blog.csdn.net 阅读全文
posted @ 2022-09-23 23:57 cliter 阅读(93) 评论(0) 推荐(0) 编辑
摘要: ~/.config/i3/config # 浮动窗口 for_window [class="Thunar"] floating enable for_window [class="Xarchiver"] floating enable # 快捷键绑定 bindsym $mod+e exec thun 阅读全文
posted @ 2022-09-23 23:52 cliter 阅读(396) 评论(0) 推荐(0) 编辑
摘要: [toc] ## Thunar action ### ffmpeg 转为 mp3 ```shell for file in %F; do ffmpeg -i "$file" "${file%%.*}".mp3; done ``` ## 搜索文件并打开 Application Finder(Win+R 阅读全文
posted @ 2022-09-23 20:35 cliter 阅读(77) 评论(0) 推荐(0) 编辑
摘要: i3wm disable i3lock 编辑配置文件 ~/.config/i3/config 注释 i3lock 所在行,最终效果如下 # xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the # s 阅读全文
posted @ 2022-09-23 07:46 cliter 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 编辑/usr/share/X11/xorg.conf.d/40-libinput.conf Section "InputClass" Identifier "libinput touchpad catchall" MatchIsTouchpad "on" MatchDevicePath "/dev/ 阅读全文
posted @ 2022-09-22 23:47 cliter 阅读(224) 评论(0) 推荐(0) 编辑
摘要: nohup <命令> & 当前终端通过 jobs 可以查看任务 阅读全文
posted @ 2022-06-10 19:18 cliter 阅读(28) 评论(0) 推荐(0) 编辑
摘要: # 创建新线程 import time import threading def f(x): """任务""" print(x) time.sleep(3) print(x) for i in range(5): threading.Thread(target=f, args=(i,)).start 阅读全文
posted @ 2022-05-11 18:28 cliter 阅读(101) 评论(0) 推荐(0) 编辑
摘要: extention_name = input("输入文件名(可拖动):").split(".")[-1] 阅读全文
posted @ 2022-05-11 18:25 cliter 阅读(95) 评论(0) 推荐(0) 编辑