{Solved}Cadence Autostart Fail at login and little solution
Posted: Sat Sep 05, 2015 9:04 am
Hello Every KX's out there
I am using Kxstudio 14.04b-64-bit with xfce 4.12 Everything Have been Working Except Cadence Autostart(Both in KDE and Xfce)
After Some tinkering and Found Solution it also solves multi-user problems(atleast for me,for now)
->Fisrt Step is Open ur Text Editor(Wow)
-->Second Step is create "Cadence-autostart"(or any name except cadence,cadence-session*)
--->Third Step is Set Permissions open terminal Navigate to file path Enter "chmod 755 ./Cadence-autostart"
---->Fourth Step is Copy the below code and save it
Code:-
----->Next Copy it to /usr/bin or to ur home directory or any other place(Also make sure that folder has sufficient permission for user to access it)
------>Next make a "Cadence.desktop"(or any other name but don't forget to add .desktop) file and set permission chmod 775 ./Cadence.desktop(Code Below)
------->Save it and As root navigate to "/etc/xdg/autostart/" copy the Previous .desktop file and reboot Everything should be Fine
I recently Noticed problems with suspend,hibernate,sleep a.k.a screen blanking(Especially in multi-user Environment).Well, What is the solution??
Very simple Don't Suspend or Hibernate,just shutdown or restart and for screen blanking Follow the same procedure above(although change the name of files)
But with code copy and paste the following code:-
i don't have a laptop and also don't want sleep while making music or working or tinkering...
so let me know if this works or don't
thank u(ah.. very formal tutorial).
I am using Kxstudio 14.04b-64-bit with xfce 4.12 Everything Have been Working Except Cadence Autostart(Both in KDE and Xfce)
After Some tinkering and Found Solution it also solves multi-user problems(atleast for me,for now)
->Fisrt Step is Open ur Text Editor(Wow)
-->Second Step is create "Cadence-autostart"(or any name except cadence,cadence-session*)
--->Third Step is Set Permissions open terminal Navigate to file path Enter "chmod 755 ./Cadence-autostart"
---->Fourth Step is Copy the below code and save it
Code:-
Code: Select all
INSTALL_PREFIX="/usr"
export LADSPA_PATH=`$INSTALL_PREFIX/bin/cadence-session-start --printLADSPA_PATH`
export DSSI_PATH=`$INSTALL_PREFIX/bin/cadence-session-start --printDSSI_PATH`
export LV2_PATH=`$INSTALL_PREFIX/bin/cadence-session-start --printLV2_PATH`
export VST_PATH=`$INSTALL_PREFIX/bin/cadence-session-start --printVST_PATH`
unset INSTALL_PREFIX
INSTALL_PREFIX="/usr"
CADENCE_SESSION="$INSTALL_PREFIX/bin/cadence-session-start --system-start"
exec $CADENCE_SESSION &
unset INSTALL_PREFIX------>Next make a "Cadence.desktop"(or any other name but don't forget to add .desktop) file and set permission chmod 775 ./Cadence.desktop(Code Below)
Code: Select all
[Desktop Entry]
Encoding=UTF-8
Version=1.0
Type=Application
Name=Cadence session startup
Comment=Cadence session startup
Exec=/home/markandeya/cadence.sh
Icon=cadence
Terminal=false
GenericName=
NoDisplay=trueI recently Noticed problems with suspend,hibernate,sleep a.k.a screen blanking(Especially in multi-user Environment).Well, What is the solution??
Very simple Don't Suspend or Hibernate,just shutdown or restart and for screen blanking Follow the same procedure above(although change the name of files)
But with code copy and paste the following code:-
Code: Select all
xset -dpms
xset s noblank
xset s offso let me know if this works or don't
thank u(ah.. very formal tutorial).