Meconopsis changes for Wayland and general refactoring/optimizations
This commit is contained in:
parent
1e65025045
commit
2860100089
9 changed files with 697 additions and 1185 deletions
|
@ -14,22 +14,37 @@ class Config(BaseConfig):
|
|||
inactive_light = "#777777"
|
||||
inactive_dark = "#333333"
|
||||
|
||||
# Default Applications
|
||||
app_terminal = "terminator"
|
||||
app_launcher = "/home/kevin/bin/dmenu_wal.sh"
|
||||
web_browser = "firefox"
|
||||
file_manager = "thunar"
|
||||
app_chat = "/usr/bin/rambox"
|
||||
app_irc = "quasselclient"
|
||||
app_mail = "thunderbird"
|
||||
app_music = "spotify"
|
||||
# Predefined commands
|
||||
cmd_brightness_up = "sudo /usr/bin/xbacklight -inc 10"
|
||||
cmd_brightness_down = "sudo /usr/bin/xbacklight -dec 10"
|
||||
lock_command = "bash /home/kevin/bin/lock.sh"
|
||||
visualizer_app = "glava"
|
||||
cmd_screenshot = "xfce4-screenshooter -r -c -d 1"
|
||||
cmd_alt_screenshot = "xfce4-screenshooter -w -c -d 0"
|
||||
|
||||
app_terminal = "terminator"
|
||||
web_browser = "firefox"
|
||||
file_manager = "thunar"
|
||||
app_launcher = "ulauncher-toggle --no-window-shadow"
|
||||
lock_command = "bash /home/kevin/bin/lock.sh"
|
||||
|
||||
# Autostart applications
|
||||
apps_autostart_group = [
|
||||
{'group': "", 'command': ["firefox"]},
|
||||
{'group': "", 'command': ["terminator"]},
|
||||
{'group': "", 'command': ["/usr/bin/rambox"]},
|
||||
{'group': "", 'command': ["thunar"]},
|
||||
{'group': "", 'command': ["thunderbird"]},
|
||||
{'group': "", 'command': ["spotify"]},
|
||||
]
|
||||
apps_autostart = [
|
||||
["ulauncher", "--hide-window", "--no-window-shadow"], # App launcher background daemon
|
||||
["mako"], # Notification daemon
|
||||
["kanshi"], # Display hotplug
|
||||
["wl-paste", "--watch", "cliphist", "store"], # Clipboard manager
|
||||
["/usr/lib/kdeconnectd"], # KDE Connect daemon
|
||||
["kdeconnect-indicator"], # KDE Connect tray
|
||||
["vorta"], # Vorta backup scheduler
|
||||
]
|
||||
|
||||
# Keyboard commands
|
||||
cmd_media_play = "playerctl -i kdeconnect play-pause"
|
||||
cmd_media_next = "playerctl -i kdeconnect next"
|
||||
|
@ -43,9 +58,10 @@ class Config(BaseConfig):
|
|||
cmd_monitor_mode_day = "bash /home/kevin/bin/monitor_day.sh"
|
||||
cmd_monitor_mode_night = "bash /home/kevin/bin/monitor_night.sh"
|
||||
cmd_monitor_mode_alt = "bash /home/kevin/bin/monitor_gamenight.sh"
|
||||
cmd_reconfigure_screens = "kanshictl reload"
|
||||
|
||||
# Commands
|
||||
wallpaper_config_command = "/home/kevin/bin/wal-nitrogen-noupdate"
|
||||
wallpaper_config_command = "/bin/true"
|
||||
|
||||
# Images
|
||||
desktop_bg = "/home/kevin/Pictures/wallpapers/desktop.png"
|
||||
|
@ -83,7 +99,8 @@ class Config(BaseConfig):
|
|||
|
||||
# Bar variables
|
||||
bar_background = background
|
||||
bar_opacity = 0.8
|
||||
bar_rgba_opacity = "AA"
|
||||
bar_opacity = 1.0
|
||||
bar_hover_opacity = 1
|
||||
|
||||
# Groupbox variables
|
||||
|
@ -104,11 +121,12 @@ class Config(BaseConfig):
|
|||
tasklist_urgent_border = highlight
|
||||
tasklist_font = "Noto Sans"
|
||||
tasklist_fontsize = 11
|
||||
tasklist_rounded = False
|
||||
|
||||
# Thermal indicator variables
|
||||
thermal_threshold = 75
|
||||
thermal_sensor = "Tdie"
|
||||
thermal_chip = "zenpower-pci-00c3"
|
||||
thermal_sensor = "Package id 0"
|
||||
thermal_chip = "coretemp-isa-0000"
|
||||
|
||||
# CPU graph variables
|
||||
cpu_graph_colour = '#ff0000'
|
||||
|
@ -123,10 +141,11 @@ class Config(BaseConfig):
|
|||
battery_theme_path = "/home/kevin/.config/qtile/kuro/resources/battery"
|
||||
battery_update_delay = 5
|
||||
|
||||
# Wifi variables
|
||||
wifi_interface = "wifi0"
|
||||
# Network variables
|
||||
wifi_interface = "wlp3s0"
|
||||
wifi_theme_path = "/home/kevin/.config/qtile/kuro/resources/wifi"
|
||||
wifi_update_interval = 5
|
||||
wired_interface = "enp4s0"
|
||||
|
||||
# GPU variables
|
||||
gpu_theme_path = "/home/kevin/.config/qtile/kuro/resources/gpu"
|
||||
|
@ -135,8 +154,8 @@ class Config(BaseConfig):
|
|||
volume_font = "Noto Sans"
|
||||
volume_fontsize = 11
|
||||
volume_theme_path = "/home/kevin/.config/qtile/kuro/resources/volume"
|
||||
volume_pulse_sink = "alsa_output.usb-Burr-Brown_from_TI_USB_Audio_CODEC-00.analog-stereo-output"
|
||||
volume_pulse_sink2 = "alsa_output.pci-0000_0d_00.4.analog-stereo"
|
||||
volume_pulse_sink = "alsa_output.usb-CSCTEK_USB_Audio_and_HID_A34004801402-00.analog-stereo"
|
||||
volume_pulse_sink2 = None
|
||||
|
||||
volume_is_bluetooth_icon = False
|
||||
volume_update_interval = 0.2
|
||||
|
@ -161,9 +180,6 @@ class Config(BaseConfig):
|
|||
laptop_screen_nvidia = "eDP-1-1"
|
||||
laptop_screen_intel = "eDP1"
|
||||
|
||||
# Keyboard colors
|
||||
do_keyboard_updates = False
|
||||
|
||||
# Show audio visualizer
|
||||
show_audio_visualizer = False
|
||||
kill_unnecessary_glava_processes = True
|
||||
|
@ -177,9 +193,5 @@ class Config(BaseConfig):
|
|||
# Show battery widget
|
||||
show_battery_widget = False
|
||||
|
||||
# Audio control applications
|
||||
# apps_audio = ["pavucontrol"]
|
||||
apps_audio_afterstart = []
|
||||
|
||||
# Comma-separated list of ignored players in the media widget
|
||||
media_ignore_players = "kdeconnect"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue