From 3d50d72da4a8137f8cb495b4fb1d4dc9e5196546 Mon Sep 17 00:00:00 2001 From: cool-mist Date: Sun, 8 Sep 2024 00:15:49 +0530 Subject: [PATCH] update --- dot_bashrc | 2 ++ private_dot_config/awesome/rc.lua | 2 +- private_dot_config/polybar/config.ini | 2 +- private_dot_config/wezterm/wezterm.lua | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/dot_bashrc b/dot_bashrc index 8af3b4f..ec67e1c 100644 --- a/dot_bashrc +++ b/dot_bashrc @@ -129,3 +129,5 @@ export XDG_CONFIG_HOME=$HOME/.config export PATH=$PATH:$XDG_CONFIG_HOME # export CHIPS_LAB_HOME=$HOME/projects/homelab/services + +joke -c programming | cowsay -f tux diff --git a/private_dot_config/awesome/rc.lua b/private_dot_config/awesome/rc.lua index 77b471b..3fb60f6 100644 --- a/private_dot_config/awesome/rc.lua +++ b/private_dot_config/awesome/rc.lua @@ -500,5 +500,5 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n awful.spawn.with_shell('picom') awful.spawn.with_shell('nitrogen --restore') awful.spawn.with_shell('polybar') -awful.spawn.with_shell('xset s 3600 3600') -- set screen saver timeout to 1 hour +awful.spawn.with_shell('xset s off -dpms') -- set screen saver timeout to 1 hour -- awful.spawn.with_shell('pcloud') diff --git a/private_dot_config/polybar/config.ini b/private_dot_config/polybar/config.ini index 833b0bc..df4a4da 100644 --- a/private_dot_config/polybar/config.ini +++ b/private_dot_config/polybar/config.ini @@ -187,7 +187,7 @@ label-foreground = ${colors.module-value} [module/date] type = internal/date interval = 1 -date = %m-%d %H:%M +date = %d-%m %H:%M label = %date% label-foreground = ${colors.foreground} diff --git a/private_dot_config/wezterm/wezterm.lua b/private_dot_config/wezterm/wezterm.lua index 7894b01..ed06bf0 100644 --- a/private_dot_config/wezterm/wezterm.lua +++ b/private_dot_config/wezterm/wezterm.lua @@ -48,6 +48,7 @@ local act = wezterm.action config.keys = { { key = '}', mods = 'SHIFT|CTRL', action = act.SplitVertical { domain = 'CurrentPaneDomain' } }, { key = '|', mods = 'SHIFT|CTRL', action = act.SplitHorizontal { domain = 'CurrentPaneDomain' } }, + { key = '"', mods = 'SHIFT|CTRL', action = act.SplitVertical { domain = 'CurrentPaneDomain' } }, { key = 'T', mods = 'SHIFT|CTRL', action = act.SpawnTab 'CurrentPaneDomain' }, { key = 'z', mods = 'CTRL', action = act.TogglePaneZoomState }, { key = 'w', mods = 'CTRL', action = act.CloseCurrentPane { confirm = true } },