Update configuration for new laptop, Fixes for new qtile internal api, PrintScreen button function, Compositor and Clipboard manager, Fix mouse actions
This commit is contained in:
parent
baece2297f
commit
95d2c26854
10 changed files with 68 additions and 48 deletions
|
@ -16,8 +16,7 @@ class Config(BaseConfig):
|
|||
|
||||
# Default Applications
|
||||
app_terminal = "terminator"
|
||||
app_launcher = "dmenu_run -i -p '»' -nb '" + background + "' -fn 'Noto Sans-11' -nf '" + inactive_light + \
|
||||
"' -sb '" + highlight + "' -sf '" + foreground + "'"
|
||||
app_launcher = "/home/kevin/bin/dmenu_wal.sh"
|
||||
web_browser = "firefox-developer-edition"
|
||||
file_manager = "thunar"
|
||||
app_chat = "franz"
|
||||
|
@ -25,8 +24,12 @@ class Config(BaseConfig):
|
|||
app_mail = "thunderbird"
|
||||
cmd_brightness_up = "sudo /usr/bin/xbacklight -inc 10"
|
||||
cmd_brightness_down = "sudo /usr/bin/xbacklight -dec 10"
|
||||
lock_command = "/home/kevin/bin/lock.sh"
|
||||
lock_command = "bash /home/kevin/bin/lock.sh"
|
||||
visualizer_app = "glava"
|
||||
cmd_screenshot = "xfce4-screenshooter -r -c -d 1"
|
||||
|
||||
# Commands
|
||||
wallpaper_config_command = "/home/kevin/bin/wal-nitrogen-noupdate"
|
||||
|
||||
# Images
|
||||
desktop_bg = "/home/kevin/Pictures/wallpapers/desktop.png"
|
||||
|
@ -104,7 +107,7 @@ class Config(BaseConfig):
|
|||
battery_update_delay = 5
|
||||
|
||||
# Wifi variables
|
||||
wifi_interface = "wlp4s0"
|
||||
wifi_interface = "wifi0"
|
||||
wifi_theme_path = "/home/kevin/.config/qtile/kuro/resources/wifi"
|
||||
wifi_update_interval = 5
|
||||
|
||||
|
@ -115,10 +118,10 @@ class Config(BaseConfig):
|
|||
volume_font = "Noto Sans"
|
||||
volume_fontsize = 11
|
||||
volume_theme_path = "/home/kevin/.config/qtile/kuro/resources/volume"
|
||||
volume_get_command = "pamixer --sink 2 --get-volume".split()
|
||||
volume_mute_command = "pamixer --sink 2 -t".split()
|
||||
volume_up_command = "pamixer --sink 2 -i 2".split()
|
||||
volume_down_command = "pamixer --sink 2 -d 2".split()
|
||||
volume_get_command = "pamixer --get-volume".split()
|
||||
volume_mute_command = "pamixer -t".split()
|
||||
volume_up_command = "pamixer -i 2".split()
|
||||
volume_down_command = "pamixer -d 2".split()
|
||||
volume_is_bluetooth_icon = False
|
||||
volume_update_interval = 0.2
|
||||
|
||||
|
@ -139,8 +142,8 @@ class Config(BaseConfig):
|
|||
updates_colour_available = '#f4d742'
|
||||
|
||||
# Screen organization
|
||||
laptop_screen_nvidia = "eDP-1-1"
|
||||
laptop_screen_intel = "eDP1"
|
||||
laptop_screen_nvidia = "DP-2"
|
||||
laptop_screen_intel = "DP-2"
|
||||
|
||||
# Keyboard colors
|
||||
do_keyboard_updates = False
|
||||
|
@ -149,3 +152,5 @@ class Config(BaseConfig):
|
|||
show_audio_visualizer = True
|
||||
kill_unnecessary_glava_processes = True
|
||||
|
||||
# Show thermal widget
|
||||
show_temperature = True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue