mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
fe984b61d7
Caja is a fork of nautilus maintained by the Mate project. This adds a script to create a caja plugin from the nautilus plugin. It replaces all occurences of nautilus with caja (case sensitive). This is done in the same way the nemo plugin is generated from the nautilus one.
7 lines
232 B
Bash
Executable file
7 lines
232 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# this script creates a plugin for caja, just by replacing
|
|
# all occurences of Nautilus with Caja (case sensitive).
|
|
|
|
sed -i.org -e 's/Nautilus/Caja/g' syncstate_caja.py
|
|
sed -i.org -e 's/nautilus/caja/g' syncstate_caja.py
|