36 lines
		
	
	
	
		
			962 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			962 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from kuro.config import Config as GeneralConfig
 | 
						|
 | 
						|
 | 
						|
class Config(GeneralConfig):
 | 
						|
    """
 | 
						|
    Kuro QTile configuration overrides for Meconopsis
 | 
						|
    """
 | 
						|
    config_name = "Temari"
 | 
						|
 | 
						|
    # Default Applications
 | 
						|
    #app_terminal = "terminator"
 | 
						|
    cmd_brightness_up = "brightnessctl -d intel_backlight set +5%"
 | 
						|
    cmd_brightness_down = "brightnessctl -d intel_backlight set 5%-"
 | 
						|
    network_config = "nm-connection-editor"
 | 
						|
    #lock_command = "bash /home/kevin/bin/lock.sh"
 | 
						|
 | 
						|
    # Thermal indicator variables
 | 
						|
    thermal_sensor = "Package id 0"
 | 
						|
    thermal_chip = "coretemp-isa-0000"
 | 
						|
 | 
						|
    # Network variables
 | 
						|
    wifi_interface = "wlp0s20f3"
 | 
						|
    wired_interface = "enp7s0"
 | 
						|
 | 
						|
    # Volume widget variables
 | 
						|
    volume_pulse_sinks = [
 | 
						|
        # Analog jack
 | 
						|
        "alsa_output.pci-0000_00_1f.3.analog-stereo",
 | 
						|
    ]
 | 
						|
 | 
						|
    # Screen organization
 | 
						|
    laptop_screen_nvidia = "eDP-1-1"
 | 
						|
    laptop_screen_intel = "eDP1"
 | 
						|
 | 
						|
    # Show battery widget
 | 
						|
    show_battery_widget = True
 |