mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
12 lines
357 B
Bash
Executable File
12 lines
357 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2016 ownCloud GmbH
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# this script creates a plugin for caja, just by replacing
|
|
# all occurrences of Nautilus with Caja (case sensitive).
|
|
|
|
cp syncstate.py syncstate_caja.py
|
|
sed -i.org -e 's/Nautilus/Caja/g' syncstate_caja.py
|
|
sed -i.org -e 's/nautilus/caja/g' syncstate_caja.py
|