diff --git a/.config/awesome/bindings/global.lua b/.config/awesome/bindings/global.lua index e6d52e7..3dcaa2a 100644 --- a/.config/awesome/bindings/global.lua +++ b/.config/awesome/bindings/global.lua @@ -91,7 +91,7 @@ globalkeys = {}, "XF86AudioRaiseVolume", function() - awful.spawn("amixer set Master 2%+", false) + awful.spawn("pactl set-sink-volume @DEFAULT_SINK@ +2%", false) end, {description = "volume +2%", group = "hotkeys"} ), @@ -99,7 +99,7 @@ globalkeys = {}, "XF86AudioLowerVolume", function() - awful.spawn("amixer set Master 2%-", false) + awful.spawn("pactl set-sink-volume @DEFAULT_SINK@ -2%", false) end, {description = "volume -2%", group = "hotkeys"} ), @@ -298,8 +298,8 @@ globalkeys = {description = "go back", group = "tag"} ), awful.key( - {modkey}, - ".", + {modkey, "Shift"}, + ";", function() awful.spawn("/usr/bin/emoji-picker") end, diff --git a/.config/awesome/rules/init.lua b/.config/awesome/rules/init.lua index 3bbb570..447cd50 100644 --- a/.config/awesome/rules/init.lua +++ b/.config/awesome/rules/init.lua @@ -36,11 +36,11 @@ awful.rules.rules = { "GLava", "Conky", "eww-wrapper", + "Emulator", + "File Operation Progress", }, - role = { - } }, - properties = {floating = true}, + properties = { floating = true }, }, -- Fullscreen clients { @@ -59,25 +59,16 @@ awful.rules.rules = { class = { "qalculate-gtk", "Qalculate-gtk", + "Emulator", + }, + name = { + "File Operation Progress", }, }, properties = { ontop = true } }, - -- Anbox floating window size - { - rule_any = { - class = { - "anbox", - } - }, - properties = { - floating = true, - height = 800, - width = 480, - }, - }, -- Music Visualizer { rule_any = { @@ -111,4 +102,4 @@ awful.rules.rules = { focusable = false } } -} \ No newline at end of file +} diff --git a/.config/bpytop/bpytop.conf b/.config/bpytop/bpytop.conf index fabc9e0..fde85f5 100644 --- a/.config/bpytop/bpytop.conf +++ b/.config/bpytop/bpytop.conf @@ -40,7 +40,7 @@ proc_colors=True proc_gradient=True #* If process cpu usage should be of the core it's running on or usage of the total available cpu power. -proc_per_core=True +proc_per_core=False #* Show process memory as bytes instead of percent proc_mem_bytes=True @@ -68,7 +68,7 @@ show_uptime=True check_temp=True #* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. -cpu_sensor=Auto +cpu_sensor=k10temp:Tctl #* Show temperatures for cpu cores also if check_temp is True and sensors has been found show_coretemp=True diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index 565c17f..28ae75b 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf @@ -22,6 +22,10 @@ shadow-exclude = [ "name = 'GLava'", "class_g = 'Conky'", "window_type = 'dock'", + "window_type = 'menu'", + "window_type = 'dropdown_menu'", + "window_type = 'popup_menu'", + "window_type = 'tooltip'", ]; shadow-ignore-shaped = false; @@ -33,7 +37,12 @@ blur-background = true; blur-background-exclude = [ "name = 'GLava'", "class_g = 'Conky'", - "window_type = 'desktop'" + "class_g = 'kdeconnect.daemon'", + "window_type = 'desktop'", + "window_type = 'menu'", + "window_type = 'dropdown_menu'", + "window_type = 'popup_menu'", + "window_type = 'tooltip'", ]; blur-kern = "3x3box"; blur-method = "dual_kawase"; @@ -52,4 +61,4 @@ opacity-rule = [ fading = true; fade-in-step = 0.08; -fade-out-step = 0.08; +fade-out-step = 0.08; \ No newline at end of file diff --git a/.config/rofi/launchers/text/powermenu b/.config/rofi/launchers/text/powermenu index c14cd8a..97c5689 100755 --- a/.config/rofi/launchers/text/powermenu +++ b/.config/rofi/launchers/text/powermenu @@ -20,7 +20,6 @@ show=("${all[@]}") declare -A texts texts[lockscreen]="lock screen" -texts[switchuser]="switch user" texts[logout]="log out" texts[suspend]="suspend" texts[hibernate]="hibernate" @@ -31,7 +30,6 @@ texts[shutdown]="shut down" declare -A icons icons[lockscreen]="\uf023" -icons[switchuser]="\uf518" icons[logout]="\uf842" icons[suspend]="\uf9b1" icons[hibernate]="\uf7c9" @@ -51,8 +49,8 @@ actions[reboot-windows]="sudo grub-reboot 2; systemctl reboot" actions[reboot-uefi]="sudo grub-reboot 3; systemctl reboot" actions[shutdown]="systemctl poweroff" -# By default, ask for confirmation for actions that are irreversible -confirmations=(reboot reboot-windows shutdown logout) +# Ask for confirmation for every action by default +confirmations=("${all[@]}") # By default, no dry run dryrun=false