スクリーンショット - ドックを右クリックしたときに「選択した領域のスクリーンショットを撮る」オプションが表示されない

スクリーンショット - ドックを右クリックしたときに「選択した領域のスクリーンショットを撮る」オプションが表示されない

Ubuntu 16.04 では、ドックのスクリーンショット アプリを右クリックすると、「選択した領域のスクリーンショットを撮る」オプションがありました。

Ubuntu 18.04 ではこのオプションはなくなりました。

どうすれば復元できますか?

ファイルorg.gnome.Screenshot.desktopには次の内容が含まれます。

[Desktop Entry]
Name[en_GB]=Screenshot
    ... other translations
Name=Screenshot
Comment[en_GB]=Save images of your screen or individual windows
    ... other translations
Comment=Save images of your screen or individual windows
Keywords[en_GB]=snapshot;capture;print;screenshot;
    ... other translations
Keywords=snapshot;capture;print;screenshot;
Exec=gnome-screenshot --interactive
Terminal=false
Type=Application
Icon=applets-screenshooter
StartupNotify=true
Categories=GTK;GNOME;Utility;X-GNOME-Utilities;
NotShowIn=KDE;
X-GNOME-Bugzilla-Bugzilla=GNOME
X-GNOME-Bugzilla-Product=gnome-utils
X-GNOME-Bugzilla-Component=screenshot
# Disable broken actions https://pad.lv/1720262
# Actions=screen-shot;window-shot;area-shot
Actions=screen-shot;
DBusActivatable=true

[Desktop Action screen-shot]
Name[en_GB]=Take a Screenshot of the Whole Screen
    ... other translations
Name=Take a Screenshot of the Whole Screen
Exec=gnome-screenshot

[Desktop Action window-shot]
Name[en_GB]=Take a Screenshot of the Current Window
    ... other translations
Name=Take a Screenshot of the Current Window
Exec=gnome-screenshot -w

[Desktop Action area-shot]
Name=Take a Screenshot of a Selected Area
Exec=gnome-screenshot -a

答え1

window-shotarea-shotファイル内のアクションが無効になっています.desktop

Actions=screen-shot;

ラインに

Actions=screen-shot;window-shot;area-shot;

(または、window-shot;「選択した領域のスクリーンショットを撮る」アクションのみが必要な場合は、この部分を回避してください)。

追伸.desktop内のファイルを直接編集することはお勧めしません/usr/share/applications/。代わりに、まずファイルを~/.local/share/applications/ディレクトリにコピーしてから、コピーしたファイルを編集してください。

注記:これらのアクションは、バグバグは(部分的に?)修正されたようです。それでも問題が解決しない場合は、適切な修正がリリースされるまでお待ちください。

関連情報