mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-14 16:42:47 +01:00
839361594d
* Update createcajaplugin.sh * first apply branding, then create copies. Better. Fixes https://github.com/owncloud/ownbrander/issues/753 * fix https://github.com/owncloud/ownbrander/issues/752 too.
9 lines
266 B
Bash
Executable File
9 lines
266 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# this script creates a plugin for caja, just by replacing
|
|
# all occurences 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
|