0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Ubuntuでスクリーンショットの保存先を変更してショートカットを設定する

Posted at

Ubuntu 20.04 LTSでスクリーンショットのデフォルト保存先を変更して、ショートカットを設定する方法。

デフォルトの保存先を変更する方法

端末で設定する方法

以下のコマンドで設定する。file:///と、スラッシュが3つなのに注意する。

gsettings set org.gnome.gnome-screenshot \
auto-save-directory "file:///path/to/screenshot/"

path/to/screenshotは保存したいパスで書き換える。

GUIで設定する方法

dconf-editorで設定する。
コマンドラインで以下を実行してdconf-editorをインストールする。

sudo apt install dconf-editor

dconf-editorを起動してorg > gnome > gnome-screenshotと辿っていき、「カスタム値」の欄にfile:///path/to/screenshot/とする。

ショートカットを変更する

デフォルトではデフォルトの保存先のままなので、変更する。
まずデフォルトのショートカットをすべて無効にする。
設定からキーボードショートカットを開き、Backspaceで無効にする。
つぎに、一番下にある「+」マークをクリックして新しいショートカットを設定する。
名前とコマンドとショートカットを入力するダイアログが開く。
名前は元々あったショートカット名を参考にすればいいだろう。
コマンドは端末でgnome-screenshot --helpを参考にするとわかりやすい。
ショートカットは元々あったものと同じでいいと思うがお好みで。
下に自分の設定をまとめておく。

スクショの動作と範囲 コマンド ショートカット
全体+画像 gnome-screenshot Print
全体+クリップ gnome-screenshot -c Ctrl + Print
ウィンドウ+画像 gnome-screenshot -w Alt + Print
ウィンドウ+クリップ gnome-screenshot -wc Alt + Ctrl + Print
領域+画像 gnome-screenshot -a Shift + Print
領域+クリップ gnome-screenshot -ac Shift + Ctrl + Print

参考

以下のリンクの内容を総合してまとめた。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?