The Following User Says Thank You to hugon9 For This Useful Post: | ||
![]() |
2013-07-17
, 21:32
|
Posts: 96 |
Thanked: 56 times |
Joined on Jan 2013
|
#12
|
Make desktop icon that kills pulseaudio.
Just make this text file and name it killpulseaudio.desktopCode:[Desktop Entry] Type=application Name=KillPulseaudio Icon=icon-l-user-guide Exec=killall pulseaudio
then move it to: /urs/share/applications/
Here is code for moving it from MyDocs:
Then just tap it when you want end pulseaudio proces.Code:in terminal devel-su type password default:rootme mv /home/user/MyDocs/killpulseaudio.desktop /usr/share/applications/
I made one for CuteTube and Fennec because they sometimes wont close.
![]() |
2013-07-17
, 21:44
|
Posts: 96 |
Thanked: 56 times |
Joined on Jan 2013
|
#13
|
![]() |
2013-07-18
, 00:09
|
|
Posts: 645 |
Thanked: 519 times |
Joined on Apr 2012
@ Finland
|
#14
|
Type=Application
devel-su rootme cd /usr/share/applications/ nano killpulseaudio.desktop
devel-su rootme apt-get install nano
![]() |
2013-07-18
, 01:01
|
Posts: 96 |
Thanked: 56 times |
Joined on Jan 2013
|
#15
|
Found mistake line:
A in application needs to capital letter so A not a.Code:Type=Application
If you want fast way to edit that heres code.
Nano is text editor.Code:devel-su rootme cd /usr/share/applications/ nano killpulseaudio.desktop
If you get error: Nano not found.
Do:
But sure you can use any other way you like.Code:devel-su rootme apt-get install nano
thank you!