From 91db7be2a15875dff61312e4c957ee32bcd1b407 Mon Sep 17 00:00:00 2001 From: "lion.chan" Date: Fri, 12 May 2023 09:53:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20Gnome=20Files=20=E9=85=8D?= =?UTF-8?q?=E7=BD=AE.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: lion.chan --- Software/Applications/Gnome/Gnome3_配置.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Software/Applications/Gnome/Gnome3_配置.md b/Software/Applications/Gnome/Gnome3_配置.md index 58f0aaa..747d148 100644 --- a/Software/Applications/Gnome/Gnome3_配置.md +++ b/Software/Applications/Gnome/Gnome3_配置.md @@ -135,3 +135,14 @@ sudo pacman -S gnome-power-manager 3. 选择 Workspaces->Dynamic workspaces 4. 选择 Multi-Monitor->Workspaces on all displays 5. 选择Application Switching->Include applications from the current workspace only + +### 5. Gnome Files (GNOME Nautilus) 配置 + +Gnome Files 可以调用脚本来执行命令,在 Files 中选中文件或文件夹以后,右键菜单中会出现 Scripts 菜单,选择 Open Scripts Folder 即可打开脚本目录。可以在这个目录下创建 Linux 脚本文件,或创建子文件夹。这些脚本文件将自动出现在 Files 右键菜单中的 Scripts 子项下。 + +以前在 Files 中想要右键打开 Terminal 需要安装相关插件,如今只需要在 Files 的脚本目录中创建 open-terminal-here 脚本即可: + +```bash +#!/bin/sh +gnome-terminal +```