Summary: | add go => to date | ||
---|---|---|---|
Product: | [Applications] korganizer | Reporter: | Dj YB <yehielb> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | REPORTED --- | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | 4.3.1 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Dj YB
2009-10-24 13:02:32 UTC
Hello, I have implemented this shortcut using "Input Actions" assigning "Ctrl+G" to the command: perl -e '{my $date=`kdialog --calendar "Go To"`; my ($weekday,$m,$day,$year)=split(/ /,$date); chop($year); $m=($m eq 'Jan')?"01":($m eq 'Feb')?"02":($m eq 'Mar')?"03":($m eq 'Apr')?"04":($m eq 'May')?"05":($m eq 'Jun')?"06":($m eq 'Jul')?"07":($m eq 'Aug')?"08":($m eq 'Sep')?"09":($m eq 'Oct')?"10":($m eq 'Nov')?"11":($m eq 'Dec')?"12":"01"; $date="$year/$m/$day"; print "$date\n"; `qdbus org.kde.korganizer /Calendar org.kde.Korganizer.Calendar.showDate $date`;}' thanks, YB. |