-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
102 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# ZDesktopManager | ||
|
||
> 通过 `pandoc .\README.md -o README.pdf --pdf-engine=xelatex -V CJKmainfont=KaiTi` 将文件转换为pdf,需要 `winget install MiKTex` | ||
一个简单的桌面管理工具,目前功能比较简陋。 | ||
|
||
这是中文。 | ||
## 技术和依赖 | ||
|
||
虽然使用Compose Desktop开发,但因为功能特性不可避免用了一些Win32 API,因此只能在Windows下运行。目前仅测试过Windows 11。 | ||
|
||
## 目标和进度 | ||
|
||
- [x] 嵌入Windows11桌面 | ||
- [x] 图标显示和点击 | ||
- [x] 桌面文件监听 | ||
- [ ] 文件拖放支持 | ||
- [ ] 卡片大小、样式自定义 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
# ZDesktopManager - 桌面管理工具 | ||
# ZDesktopManager - 桌面管理工具使用向导 | ||
|
||
这是一个桌面管理工具。 | ||
ZDesktopManager是一个试图模仿[Fences](https://www.stardock.com/products/fences/)、[Portals](https://portals-app.com/) 的桌面管理工具,可以在你的桌面上添加数个窗格,展示你的桌面文件夹内容,便于随时访问和点击。 | ||
|
||
![ZDesktopManager桌面截图](screenshot1.png "桌面截图1") | ||
|
||
与同类软件相比,ZDesktopManager有以下特点: | ||
|
||
1. 更少的功能 | ||
2. Kotlin/JVM + Compose Desktop实现,占用更多内存 | ||
3. 维护者只有一个人,全凭兴趣,随时跑路 | ||
4. 开源 | ||
|
||
是的,现在各方面都比不上同类软件,因为这个工具的开发全凭个人兴趣,因为我买不起Fences。 | ||
|
||
## 简单使用 | ||
|
||
在桌面上创建数个文件夹并重命名为“娱乐”、“游戏”等,将你的桌面图标放到这些文件夹中,随后这些文件夹会以卡片的形式出现在桌面。你可以直接双击打开这些图标对应文件或应用。 | ||
|
||
## 支持和更新 | ||
|
||
所有代码开源在Github,有任何问题和建议可以提Issue讨论,欢迎Star和Pr。 | ||
|
||
[https://github.com/zerofancy/ZDesktopManager](https://github.com/zerofancy/ZDesktopManager) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 | ||
kotlin.code.style=official | ||
kotlin.version=2.0.0 | ||
compose.version=1.6.10 | ||
compose.version=1.6.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters