gruso
thunderbox
snd-seq module
MIDI apps need to load snd-seq, which asks for your password each session. Could this module be included in the OS? For context, sample script from Sunvox:
	
	
	
		
[edit] And:
.gtkrc-2.0 customisations
Two small tweaks in here which make XFCE feel a little more polished on the Pandora. Transparent background for desktop icon text, and wider scrollbars.
	
	
	
		
I know there are a million tweaks we could add, but these ones really make a difference and are worth making default IMO.
(If people want to try this, paste the above code into a file called .gtkrc-2.0 and save it to your homedir. Log out & in again to see changes.)
				
			MIDI apps need to load snd-seq, which asks for your password each session. Could this module be included in the OS? For context, sample script from Sunvox:
		Code:
	
	if ! lsmod|grep -q snd-seq;then
  # the module isn't loaded
  if ! grep -q snd-seq /etc/modules;then
	# not loaded automagically
	gksudo -D "load MIDI module on startup ?" "echo snd-seq>>/etc/modules"
  fi
  gksudo -D "load MIDI module" "modprobe -k snd-seq"
fi
	[edit] And:
.gtkrc-2.0 customisations
Two small tweaks in here which make XFCE feel a little more polished on the Pandora. Transparent background for desktop icon text, and wider scrollbars.
		Code:
	
	# Transparent background for desktop icon text.
style "xfdesktop-icon-view" {
XfdesktopIconView::label-alpha = 0
#Text colors (delete these if you want you use gtk theme colors):
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#000000"
fg[ACTIVE] = "#000000"
}
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
# Make scrollbars wider
style "scroll"
{
	GtkScrollbar::slider-width		= 25
}
class "*" style "scroll"
	I know there are a million tweaks we could add, but these ones really make a difference and are worth making default IMO.
(If people want to try this, paste the above code into a file called .gtkrc-2.0 and save it to your homedir. Log out & in again to see changes.)
			
				Last edited by a moderator: 
			
		
	
								
								
									
	
								
							
							
	