mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
some quick fixed to make it usable
This commit is contained in:
parent
a7e02d70fb
commit
9c17350593
2 changed files with 5 additions and 5 deletions
|
@ -12,7 +12,7 @@ require("awful.hotkeys_popup.keys")
|
||||||
-- If you do not like this or do not have such a key,
|
-- If you do not like this or do not have such a key,
|
||||||
-- I suggest you to remap Mod4 to another key using xmodmap or other tools.
|
-- I suggest you to remap Mod4 to another key using xmodmap or other tools.
|
||||||
-- However, you can use another modifier like Mod1, but it may interact with others.
|
-- However, you can use another modifier like Mod1, but it may interact with others.
|
||||||
modkey = "Mod3"
|
modkey = "Mod4"
|
||||||
|
|
||||||
local key_conf = {}
|
local key_conf = {}
|
||||||
|
|
||||||
|
@ -237,4 +237,4 @@ key_conf.clientbuttons = gears.table.join(
|
||||||
root.keys(key_conf.globalkeys)
|
root.keys(key_conf.globalkeys)
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
return key_conf
|
return key_conf
|
||||||
|
|
|
@ -103,7 +103,7 @@ rand_wllppr()
|
||||||
|
|
||||||
|
|
||||||
-- This is used later as the default terminal and editor to run.
|
-- This is used later as the default terminal and editor to run.
|
||||||
terminal = "urxvt"
|
terminal = "wezterm"
|
||||||
editor = os.getenv("EDITOR") or "vim"
|
editor = os.getenv("EDITOR") or "vim"
|
||||||
editor_cmd = terminal .. " -e " .. editor
|
editor_cmd = terminal .. " -e " .. editor
|
||||||
|
|
||||||
|
@ -138,8 +138,8 @@ root.buttons(gears.table.join(
|
||||||
awful.button({ }, 5, awful.tag.viewprev)
|
awful.button({ }, 5, awful.tag.viewprev)
|
||||||
))
|
))
|
||||||
-- }}}
|
-- }}}
|
||||||
awful.spawn.with_shell(string.format("%s/.config/autostart.sh", os.getenv("HOME")))
|
--awful.spawn.with_shell(string.format("%s/.config/autostart.sh", os.getenv("HOME")))
|
||||||
awful.spawn.with_shell(string.format("%s/.config/polybar/start_polybar.sh", os.getenv("HOME")))
|
--awful.spawn.with_shell(string.format("%s/.config/polybar/start_polybar.sh", os.getenv("HOME")))
|
||||||
-- XDG autostart
|
-- XDG autostart
|
||||||
-- awful.spawn.with_shell(
|
-- awful.spawn.with_shell(
|
||||||
-- 'if (xrdb -query | grep -q "^awesome\\.started:\\s*true$"); then exit; fi;' ..
|
-- 'if (xrdb -query | grep -q "^awesome\\.started:\\s*true$"); then exit; fi;' ..
|
||||||
|
|
Loading…
Reference in a new issue