mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
Signed-off-by: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>
9 lines
267 B
Bash
Executable File
9 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
|