Merge remote-tracking branch 'origin/meconopsis' into celestia-wayland
This commit is contained in:
commit
5a0041e7d5
10 changed files with 745 additions and 1187 deletions
|
@ -14,22 +14,39 @@ class Config(BaseConfig):
|
|||
inactive_light = "#777777"
|
||||
inactive_dark = "#333333"
|
||||
|
||||
# Default Applications
|
||||
app_terminal = "ghostty"
|
||||
app_terminal_init = "ghostty --gtk-single-instance=true --quit-after-last-window-close=false --initial-window=true"
|
||||
app_launcher = "/home/kevin/bin/dmenu_wal.sh"
|
||||
web_browser = "firefox"
|
||||
file_manager = "thunar"
|
||||
app_chat = "/usr/bin/rambox"
|
||||
app_irc = ""
|
||||
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"
|
||||
cmd_screenshot = "/home/kevin/bin/screenshot.sh"
|
||||
cmd_alt_screenshot = "/home/kevin/bin/screenshot.sh"
|
||||
lock_command = "bash /home/kevin/bin/lock.sh"
|
||||
cliphistory_command = "/home/kevin/bin/cliphistory.sh"
|
||||
|
||||
# Default Applications
|
||||
app_terminal = "ghostty"
|
||||
app_launcher = "wofi --show drun,run"
|
||||
file_manager = "thunar"
|
||||
visualizer_app = "glava"
|
||||
cmd_screenshot = "xfce4-screenshooter -r -c -d 1"
|
||||
cmd_alt_screenshot = "xfce4-screenshooter -w -c -d 0"
|
||||
web_browser = "firefox"
|
||||
|
||||
# Autostart applications
|
||||
apps_autostart_group = [
|
||||
{'group': "", 'command': ["firefox"]},
|
||||
{'group': "", 'command': ["ghostty", "--gtk-single-instance=true", "--quit-after-last-window-close=false", "--initial-window=true"]},
|
||||
{'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"
|
||||
|
@ -44,9 +61,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" # TODO: Remove
|
||||
|
||||
# Images
|
||||
desktop_bg = "/home/kevin/Pictures/wallpapers/desktop.png"
|
||||
|
@ -85,7 +103,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
|
||||
|
@ -106,6 +125,7 @@ class Config(BaseConfig):
|
|||
tasklist_urgent_border = highlight
|
||||
tasklist_font = "Noto Sans"
|
||||
tasklist_fontsize = 11
|
||||
tasklist_rounded = False
|
||||
|
||||
# Thermal indicator variables
|
||||
thermal_threshold = 75
|
||||
|
@ -125,10 +145,11 @@ class Config(BaseConfig):
|
|||
battery_theme_path = "/home/kevin/.config/qtile/kuro/resources/battery"
|
||||
battery_update_delay = 5
|
||||
|
||||
# Wifi variables
|
||||
# Network variables
|
||||
wifi_interface = "wifi0"
|
||||
wifi_theme_path = "/home/kevin/.config/qtile/kuro/resources/wifi"
|
||||
wifi_update_interval = 5
|
||||
wired_interface = "br1"
|
||||
|
||||
# GPU variables
|
||||
gpu_theme_path = "/home/kevin/.config/qtile/kuro/resources/gpu"
|
||||
|
@ -137,9 +158,10 @@ 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_sinks = [
|
||||
"alsa_output.usb-Burr-Brown_from_TI_USB_Audio_CODEC-00.analog-stereo-output",
|
||||
"alsa_output.pci-0000_0d_00.4.analog-stereo",
|
||||
]
|
||||
volume_is_bluetooth_icon = False
|
||||
volume_update_interval = 0.2
|
||||
|
||||
|
@ -163,9 +185,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
|
||||
|
@ -179,9 +198,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