Home
Packages
Forums
Wiki
GitLab
Security
AUR
Download
コンテンツにスキップ
メインメニュー
メインメニュー
サイドバーに移動
非表示
案内
メインページ
目次
コミュニティに貢献
最近の出来事
おまかせ表示
特別ページ
交流
ヘルプ
貢献
最近の更新
最近の議論
新しいページ
統計
リクエスト
ArchWiki
検索
検索
表示
アカウント作成
ログイン
個人用ツール
アカウント作成
ログイン
Nemoのソースを表示
ページ
議論
日本語
閲覧
ソースを閲覧
履歴を表示
ツール
ツール
サイドバーに移動
非表示
操作
閲覧
ソースを閲覧
履歴を表示
全般
リンク元
関連ページの更新状況
ページ情報
表示
サイドバーに移動
非表示
←
Nemo
あなたには「このページの編集」を行う権限がありません。理由は以下の通りです:
この操作は、次のグループに属する利用者のみが実行できます:
登録利用者
。
このページのソースの閲覧やコピーができます。
[[Category:ファイルマネージャ]] [[ar:Nemo]] [[en:Nemo]] {{Related articles start}} {{Related2|Cinnamon|Cinnamon}} {{Related|ファイルマネージャの機能}} {{Related2|GNOME Files|GNOME Files}} {{Related2|Thunar|Thunar}} {{Related2|PCManFM|PCManFM}} {{Related articles end}} [https://github.com/linuxmint/nemo Nemo] は [[GNOME Files|GNOME Files]] のフォークです。[[Cinnamon|Cinnamon]] デスクトップのデフォルトのファイルマネージャでもあります。Nemo は Nautilus 3.4 のコードをベースにしています。Nautilus 3.6 で type ahead find や分割ビューといった機能が削除されたことで Nemo が作成されました。 == インストール == [[Official Repositories|公式リポジトリ]]から {{Pkg|nemo}} を[[pacman|インストール]]してください。 === エクステンション === Nemo に機能を追加できるプログラムがあります。そのようなことをするパッケージの一覧です: * {{App|Nemo File Roller|File Roller を Nemo に統合します。|https://github.com/linuxmint/nemo-extensions/tree/master/nemo-fileroller|{{Pkg|nemo-fileroller}}}} * {{App|Nemo Preview|Nemo に GtkClutter と Javascript ベースのクイックプレビューを追加します。|https://github.com/linuxmint/nemo-extensions/tree/master/nemo-preview|{{Pkg|nemo-preview}}}} * {{App|Nemo Seahorse|GnuPG を使って OpenPGP ファイルの暗号化・復号化を可能にします。|https://github.com/linuxmint/nemo-extensions/tree/master/nemo-seahorse|{{Pkg|nemo-seahorse}}}} * {{App|Nemo Share|Nemo の Samba エクステンション。|https://github.com/linuxmint/nemo-extensions/tree/master/nemo-share|{{Pkg|nemo-share}}}} * {{App|RabbitVCS Nemo|RabbitVCS を Nemo に統合します。|http://www.rabbitvcs.org/|{{AUR|rabbitvcs-nemo}}}} 全てのエクステンションは [https://github.com/linuxmint/nemo-extensions nemo-extensions github repo] を見て下さい。 == 設定 == Nemo はグラフィカルに設定をすることができますが、nautilus の設定メニューから行える設定は全てではありません。''dconf-editor'' を使って、もっと多くのオプションが {{ic|org.nemo}} 下で利用できます。 === デスクトップアイコンを表示・隠す === nemo のデスクトップアイコン表示機能を有効・無効にするには、次の設定を true か false に変更してください (false で非表示、true で表示): $ gsettings set org.nemo.desktop show-desktop-icons false === Nemo をデフォルトのファイルブラウザにする === 以下の行を {{ic|~/.local/share/applications/mimeapps.list}} ファイルの Default Applications セクションに追加して下さい: [Default Applications] inode/directory=nemo.desktop === "Open in terminal" メニューエントリのアプリケーションを変更する === $ gsettings set org.cinnamon.desktop.default-applications.terminal exec terminal-name == Tips and tricks == === Nemo アクション === Nemo では、ユーザーはコンテキストメニューに新しいエントリを追加することができます。ファイル {{ic|[https://github.com/linuxmint/nemo/blob/master/files/usr/share/nemo/actions/sample.nemo_action /usr/share/nemo/actions/sample.nemo_action]}} には Nemo のアクションのサンプルが含まれています。カスタムアクションファイルを配置するディレクトリは: * {{ic|/usr/share/nemo/actions/}} システム全体で使えるアクション * {{ic|$HOME/.local/share/nemo/actions/}} ユーザー別のアクション 名前の規則に注意してください。あなたのファイルは末尾が {{ic|.nemo_action}} でなければなりません。 ==== Clam スキャン ==== {{hc|$HOME/.local/share/nemo/actions/clamscan.nemo_action| 2=[Nemo Action] Name=Clam Scan Comment=Clam Scan Exec=gnome-terminal -x sh -c "clamscan -r %F <nowiki>|</nowiki> less" Icon-Name=bug-buddy Selection=Any Extensions=dir;exe;dll;zip;gz;7z;rar; }} ==== ファイルの移動 ==== {{hc|$HOME/.local/share/nemo/actions/archive.nemo_action| 2=[Nemo Action] Active=true Name=Archive %N Comment=Archiving %N will add .archive to the object. Exec=<archive.py %F> Selection=S Extensions=any; }} {{hc|$HOME/.local/share/nemo/actions/archive.py| 2=#! /usr/bin/python2 -OOt import sys import os import shutil filename = sys.argv[0] print "Running " + filename print "With the following arguments:" for arg in sys.argv: if filename == arg: continue else: print arg #os.rename('%s','%s.archive') % (arg,arg) shutil.move(arg, arg+".archive") }} ==== Meld による比較 ==== {{hc|$HOME/.local/share/nemo/actions/compare-save-for-later.nemo_action|2= [Nemo Action] Active=true Name=Compare later Comment=Save file for comparison later. Exec=<compare.sh save %F> Icon-Name=meld Selection=S Extensions=any }} {{hc|$HOME/.local/share/nemo/actions/compare-with-saved.nemo_action|2= [Nemo Action] Active=true Name=Compare with saved element Comment=Compare %F saved file or directory. Exec=<compare.sh compare %F> Icon-Name=meld Selection=S Extensions=any }} {{hc|$HOME/.local/share/nemo/actions/compare.sh|2= #!/bin/bash savedfile=/var/tmp/compare-save-for-later.$USER comparator=meld if [ "$1" == "save" ]; then echo "$2" > "$savedfile" else "$comparator" $(cat "$savedfile") "$2" fi }}
このページで使用されているテンプレート:
テンプレート:AUR
(
ソースを閲覧
)
テンプレート:App
(
ソースを閲覧
)
テンプレート:Hc
(
ソースを閲覧
)
テンプレート:Ic
(
ソースを閲覧
)
テンプレート:META Related articles start
(
ソースを閲覧
)
テンプレート:Pkg
(
ソースを閲覧
)
テンプレート:Related
(
ソースを閲覧
)
テンプレート:Related articles end
(
ソースを閲覧
)
テンプレート:Related articles start
(
ソースを閲覧
)
テンプレート:Tip
(
ソースを閲覧
)
Nemo
に戻る。
検索
検索
Nemoのソースを表示
話題を追加