mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-21 20:45:51 +03:00
fix branded nemo and caja shell integration (#5966)
* 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.
This commit is contained in:
parent
7280359c66
commit
f96990b489
4 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@ if( UNIX AND NOT APPLE )
|
|||
FOREACH( file ${files} )
|
||||
# the GLOB returns a absolute path. Make it relative by replacing the current src dir by nothing
|
||||
STRING(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/${size}/" "" shortFile ${file})
|
||||
STRING(REPLACE "oC" ${APPLICATION_NAME} brandedName ${shortFile})
|
||||
STRING(REPLACE "oC" ${APPLICATION_SHORTNAME} brandedName ${shortFile})
|
||||
install(FILES ${file} DESTINATION ${ICON_DIR}/${size}/apps RENAME ${brandedName})
|
||||
ENDFOREACH(file)
|
||||
ENDFOREACH(size)
|
||||
|
|
|
@ -3,8 +3,6 @@
|
|||
if( UNIX AND NOT APPLE )
|
||||
|
||||
configure_file(syncstate.py syncstate.py COPYONLY)
|
||||
configure_file(syncstate.py syncstate_nemo.py COPYONLY)
|
||||
configure_file(syncstate.py syncstate_caja.py COPYONLY)
|
||||
|
||||
# Call the setupappname.sh script to set the custom app name.
|
||||
set (cmd "${CMAKE_CURRENT_SOURCE_DIR}/setappname.sh")
|
||||
|
|
|
@ -3,5 +3,6 @@
|
|||
# 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
|
||||
|
|
|
@ -3,4 +3,5 @@
|
|||
# this script creates a plugin for nemo, just be replacing
|
||||
# all occurences of Nautilus with Nemo.
|
||||
|
||||
cp syncstate.py syncstate_nemo.py
|
||||
sed -i.org -e 's/autilus/emo/g' syncstate_nemo.py
|
||||
|
|
Loading…
Reference in a new issue