Update dotfiles

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-02-01 16:54:47 +02:00
parent d23f3dd3b6
commit 9da042ec2a
5 changed files with 27 additions and 29 deletions

View File

@@ -91,7 +91,7 @@ globalkeys =
{}, {},
"XF86AudioRaiseVolume", "XF86AudioRaiseVolume",
function() function()
awful.spawn("amixer set Master 2%+", false) awful.spawn("pactl set-sink-volume @DEFAULT_SINK@ +2%", false)
end, end,
{description = "volume +2%", group = "hotkeys"} {description = "volume +2%", group = "hotkeys"}
), ),
@@ -99,7 +99,7 @@ globalkeys =
{}, {},
"XF86AudioLowerVolume", "XF86AudioLowerVolume",
function() function()
awful.spawn("amixer set Master 2%-", false) awful.spawn("pactl set-sink-volume @DEFAULT_SINK@ -2%", false)
end, end,
{description = "volume -2%", group = "hotkeys"} {description = "volume -2%", group = "hotkeys"}
), ),
@@ -298,8 +298,8 @@ globalkeys =
{description = "go back", group = "tag"} {description = "go back", group = "tag"}
), ),
awful.key( awful.key(
{modkey}, {modkey, "Shift"},
".", ";",
function() function()
awful.spawn("/usr/bin/emoji-picker") awful.spawn("/usr/bin/emoji-picker")
end, end,

View File

@@ -36,11 +36,11 @@ awful.rules.rules = {
"GLava", "GLava",
"Conky", "Conky",
"eww-wrapper", "eww-wrapper",
"Emulator",
"File Operation Progress",
}, },
role = {
}
}, },
properties = {floating = true}, properties = { floating = true },
}, },
-- Fullscreen clients -- Fullscreen clients
{ {
@@ -59,25 +59,16 @@ awful.rules.rules = {
class = { class = {
"qalculate-gtk", "qalculate-gtk",
"Qalculate-gtk", "Qalculate-gtk",
"Emulator",
},
name = {
"File Operation Progress",
}, },
}, },
properties = { properties = {
ontop = true ontop = true
} }
}, },
-- Anbox floating window size
{
rule_any = {
class = {
"anbox",
}
},
properties = {
floating = true,
height = 800,
width = 480,
},
},
-- Music Visualizer -- Music Visualizer
{ {
rule_any = { rule_any = {
@@ -111,4 +102,4 @@ awful.rules.rules = {
focusable = false focusable = false
} }
} }
} }

View File

@@ -40,7 +40,7 @@ proc_colors=True
proc_gradient=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. #* 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 #* Show process memory as bytes instead of percent
proc_mem_bytes=True proc_mem_bytes=True
@@ -68,7 +68,7 @@ show_uptime=True
check_temp=True check_temp=True
#* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. #* 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 temperatures for cpu cores also if check_temp is True and sensors has been found
show_coretemp=True show_coretemp=True

View File

@@ -22,6 +22,10 @@ shadow-exclude = [
"name = 'GLava'", "name = 'GLava'",
"class_g = 'Conky'", "class_g = 'Conky'",
"window_type = 'dock'", "window_type = 'dock'",
"window_type = 'menu'",
"window_type = 'dropdown_menu'",
"window_type = 'popup_menu'",
"window_type = 'tooltip'",
]; ];
shadow-ignore-shaped = false; shadow-ignore-shaped = false;
@@ -33,7 +37,12 @@ blur-background = true;
blur-background-exclude = [ blur-background-exclude = [
"name = 'GLava'", "name = 'GLava'",
"class_g = 'Conky'", "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-kern = "3x3box";
blur-method = "dual_kawase"; blur-method = "dual_kawase";
@@ -52,4 +61,4 @@ opacity-rule = [
fading = true; fading = true;
fade-in-step = 0.08; fade-in-step = 0.08;
fade-out-step = 0.08; fade-out-step = 0.08;

View File

@@ -20,7 +20,6 @@ show=("${all[@]}")
declare -A texts declare -A texts
texts[lockscreen]="lock screen" texts[lockscreen]="lock screen"
texts[switchuser]="switch user"
texts[logout]="log out" texts[logout]="log out"
texts[suspend]="suspend" texts[suspend]="suspend"
texts[hibernate]="hibernate" texts[hibernate]="hibernate"
@@ -31,7 +30,6 @@ texts[shutdown]="shut down"
declare -A icons declare -A icons
icons[lockscreen]="\uf023" icons[lockscreen]="\uf023"
icons[switchuser]="\uf518"
icons[logout]="\uf842" icons[logout]="\uf842"
icons[suspend]="\uf9b1" icons[suspend]="\uf9b1"
icons[hibernate]="\uf7c9" 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[reboot-uefi]="sudo grub-reboot 3; systemctl reboot"
actions[shutdown]="systemctl poweroff" actions[shutdown]="systemctl poweroff"
# By default, ask for confirmation for actions that are irreversible # Ask for confirmation for every action by default
confirmations=(reboot reboot-windows shutdown logout) confirmations=("${all[@]}")
# By default, no dry run # By default, no dry run
dryrun=false dryrun=false