mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 04:55:48 +03:00
9d830e94f9
Signed-off-by: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>
8 lines
267 B
Bash
Executable file
8 lines
267 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# 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
|