You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
520 B
15 lines
520 B
#!/bin/zsh |
|
|
|
# Helper to fetch last return status |
|
function laststatus { return $? } |
|
|
|
kde-current-activity () { |
|
qdbus org.kde.ActivityManager /ActivityManager/Activities org.kde.ActivityManager.Activities.CurrentActivity |
|
} |
|
|
|
kde-current-activity-name () { |
|
qdbus org.kde.ActivityManager /ActivityManager/Activities org.kde.ActivityManager.Activities.ActivityName `kde-current-activity` |
|
} |
|
|
|
emacsclient -s "$(kde-current-activity-name)" -a '/usr/bin/emacs' $@ |
|
emacsclient -s "$(kde-current-activity-name)" -e '(recenter)'
|
|
|