Skip to content

Instantly share code, notes, and snippets.

@ykai55
ykai55 / crontab&notify-send.md
Created September 11, 2018 05:23
crontab 中 notify-send 不起作用

在crontab中直接使用notify-send不会起作用,因为在crontab执行的shell里,缺少一个$DBUS_SESSION_BUS_ADDRESS变量,运行时设置以下这个变量就行了。

export DBUS_SESSION_BUS_ADDRESS='unix:path=/run/user/1000/bus'

使用kde的快速启动时,如果要加入其他目录,往.xprofile里面加是不行的,kde会在启动时执行~/.config/plasma-workspace/env/目录下的文件,所以只需要在里面写上export语句就行了。

export PATH=$HOME/.local/bin:$PATH
@ykai55
ykai55 / Python: delete all items of list.py
Created August 27, 2018 03:50
Python: delete all items of list
l = [[], (), {}]
del l[:]