2024年9月28日

摘要: 休眠时会卡在 printk: Suspending console(s) (use no_console_suspend to debug) 相关帖子: https://bbs.archlinux.org/viewtopic.php?id=282837 目前看起来可行的办法是把内核版本降到6.0: 阅读全文
posted @ 2024-09-28 17:48 多多云 阅读(26) 评论(0) 推荐(0) 编辑
 

2024年9月22日

摘要: 网址输入about:config 忽视风险 输入layout.css.devPixelsPerPx 修改更大的值 阅读全文
posted @ 2024-09-22 14:23 多多云 阅读(5) 评论(0) 推荐(0) 编辑
 

2024年9月14日

摘要: 在launch.json中启用 “externalConsole”:true,则将获得一个弹出的控制台窗口,可以在其中键入 参照: https://stackoverflow.com/questions/57494832/how-to-read-input-when-debugging-in-c-i 阅读全文
posted @ 2024-09-14 16:03 多多云 阅读(17) 评论(0) 推荐(0) 编辑
 

2024年8月27日

摘要: systemd-inhibit --what sleep --why "Lock screen" --mode delay swaylock & systemctl hibernate 命令解析 systemd-inhibit --what=sleep --why="Lock screen" --m 阅读全文
posted @ 2024-08-27 12:57 多多云 阅读(88) 评论(0) 推荐(0) 编辑
 

2024年8月24日

摘要: 参照:https://github.com/hluk/CopyQ/issues/1590 1.自启动脚本例如: exec copyq 则需要启用: copyq->File->Preferences->Layout->Hide main windows copyq->File->Preferences 阅读全文
posted @ 2024-08-24 23:22 多多云 阅读(7) 评论(0) 推荐(0) 编辑
 

2024年8月23日

摘要: 按下:Ctrl+Shift+P 输入:Preferences: Open User Settings (JSON) 将以下设置添加到settings.json文件: "window.titleBarStyle": "custom" 这样zoom out,zoom in 就可以调节vscode顶部菜单 阅读全文
posted @ 2024-08-23 09:40 多多云 阅读(35) 评论(0) 推荐(0) 编辑
 
摘要: 崩溃的可能原因:sway版本过低,wayland 目前找到的解决方法就是让firefox使用xwayland窗口协议 MOZ_ENABLE_WAYLAND=0 firefox 阅读全文
posted @ 2024-08-23 09:31 多多云 阅读(5) 评论(0) 推荐(0) 编辑
 

2024年8月16日

摘要: 1.创建github仓库 (1)点击右上角的头像 (2)点击Your repositories (3)点击New (4)填写好Owner和Repository name点击Add a README file选择license,再点击Create repository 2.用git上传本地仓库到git 阅读全文
posted @ 2024-08-16 17:45 多多云 阅读(54) 评论(0) 推荐(0) 编辑
 

2024年8月11日

摘要: 问题: 使用step into调试c语言内建函数时就会出现 解决: 1.使用step over跳过调试c语言内建函数 2.将launch.json的工作目录设置为c库目录 对于debian系统 sudo apt install glibc-source cd /usr/src/glibc/ sudo 阅读全文
posted @ 2024-08-11 10:24 多多云 阅读(90) 评论(0) 推荐(0) 编辑
 

2024年8月8日

摘要: 参照:https://docs.python.org/3/library/venv.html python -m venv /path/to/new/virtual/environment source /path/to/new/virtual/environment/bin/activate 阅读全文
posted @ 2024-08-08 13:56 多多云 阅读(7) 评论(0) 推荐(0) 编辑