Update dotfiles
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
@@ -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,
|
||||
|
@@ -36,9 +36,9 @@ awful.rules.rules = {
|
||||
"GLava",
|
||||
"Conky",
|
||||
"eww-wrapper",
|
||||
"Emulator",
|
||||
"File Operation Progress",
|
||||
},
|
||||
role = {
|
||||
}
|
||||
},
|
||||
properties = { floating = true },
|
||||
},
|
||||
@@ -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 = {
|
||||
|
@@ -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
|
||||
|
@@ -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";
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user