Minor changes

This commit is contained in:
Kristofers Solo 2022-05-31 14:57:45 +03:00
parent 4885c6243c
commit 8141a4d860
5 changed files with 10 additions and 3 deletions

View File

@ -634,3 +634,4 @@ awful.spawn.with_shell("dropbox")
awful.spawn.with_shell("flameshot") awful.spawn.with_shell("flameshot")
-- awful.spawn.with_shell(" /usr/bin/pipewire & /usr/bin/pipewire-pulse & /usr/bin/pipewire-media-session") -- awful.spawn.with_shell(" /usr/bin/pipewire & /usr/bin/pipewire-pulse & /usr/bin/pipewire-media-session")
awful.spawn.with_shell("setxkbmap lv") awful.spawn.with_shell("setxkbmap lv")
awful.spawn.with_shell("corectrl")

View File

@ -54,7 +54,7 @@ update_ms = 1000
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct", #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly. #* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
proc_sorting = "cpu direct" proc_sorting = "memory"
#* Reverse sorting order, True or False. #* Reverse sorting order, True or False.
proc_reversed = False proc_reversed = False

View File

@ -1 +1,6 @@
runsvdir ~/.runit/runsvdir &
/usr/bin/pipewire &
/usr/bin/pipewire-pulse &
/usr/bin/pipewire-media-session &
exec awesome exec awesome

View File

@ -1,6 +1,6 @@
#!/bin/zsh #!/bin/zsh
if [[ "$(tty)" = "/dev/tty1"]]; then if [[ "$(tty)" = "/dev/tty1" ]]; then
pgrep awesome || sx pgrep awesome || sx
fi fi

View File

@ -34,3 +34,4 @@ export MOZ_USE_XINPUT2="1" # Mozilla smooth scrolling/touchpads.
# Adds `~/.local/bin` to $PATH # Adds `~/.local/bin` to $PATH
export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}" export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}"