您尚未登录。

#1 2022-01-01 15:46:41

junix
会员
所在地: Anhui, China
注册时间: 2018-12-06
帖子: 35

滴答清单 for Linux beta

今天突然收到滴答清单的回复:

你好,

滴答清单 for Linux beta 版本现已正式上线,欢迎下载体验,有问题可以发送反馈及时和我们联系。
下载地址:
arm64 安装包:https://dida365.com/static/getApp/download?type=linux_deb_arm64
x64 安装包:https://dida365.com/static/getApp/download?type=linux_deb_x64

离线

#2 2022-01-01 15:50:15

junix
会员
所在地: Anhui, China
注册时间: 2018-12-06
帖子: 35

Re: 滴答清单 for Linux beta

然后我用 debtap 一路回车,看起来还行

最近编辑记录 junix (2022-01-01 15:51:31)

离线

#3 2022-01-01 16:31:28

sukanka
会员
所在地: Amoy, China
注册时间: 2020-04-05
帖子: 170
个人网站

Re: 滴答清单 for Linux beta

aur 已经打包了, https://aur.archlinux.org/packages/dida-bin/

最近编辑记录 sukanka (2022-01-01 16:31:39)

离线

#4 2022-01-01 16:43:34

archblue
会员
注册时间: 2011-08-21
帖子: 73

Re: 滴答清单 for Linux beta

yysy,滴答清单是个网页版应用,有没有linux发行版都不影响使用
之前的windows版都没人用 sad

junix 说:

今天突然收到滴答清单的回复:

你好,

滴答清单 for Linux beta 版本现已正式上线,欢迎下载体验,有问题可以发送反馈及时和我们联系。
下载地址:
arm64 安装包:https://dida365.com/static/getApp/download?type=linux_deb_arm64
x64 安装包:https://dida365.com/static/getApp/download?type=linux_deb_x64

最近编辑记录 archblue (2022-01-01 16:43:53)

离线

#5 2022-01-02 00:46:04

gzroc
会员
注册时间: 2021-03-24
帖子: 224

Re: 滴答清单 for Linux beta

有没有老用户分享一下使用心得。。

离线

#6 2022-01-02 16:42:07

junix
会员
所在地: Anhui, China
注册时间: 2018-12-06
帖子: 35

Re: 滴答清单 for Linux beta

gzroc 说:

有没有老用户分享一下使用心得。。



付钱之后比 谷歌 日历 + 清单,以及 nextcloud 自带的 todo 系统好用。

all in one 的东西,比 todoist 便宜。个人认为界面设计比 todoist 好,但没没有 todoist 扩展多。
设计的目标人群更像是文职人员。可以 hack 的比较少。

我自己糊的一段和 vim 一起用的:

 
function! AddTODO()
	let buf=getline(".")
	let n=0
	while(n<80)  " 随便设置的 80, 不然会死循环 TODO
		if(buf[n] is "-" || buf[n] is "*")
			break
		endif
		let n+=1
	endwhile
	let expr=''''.buf[n+6:].''''
	call asyncrun#run("", {'mode': 'hide'}, 'echo "" | /usr/bin/mail -s '.expr.' '.$TICKTICKEMAIL.' &> /dev/null')
	" call asyncrun#run("", {'mode': 'hide'}, 'todoist add '.expr)
endfunction

离线

页脚