update
This commit is contained in:
parent
fb4ee59d66
commit
e3687a3c42
3 changed files with 6 additions and 7 deletions
|
@ -19,6 +19,7 @@ local alt = "Mod1"
|
|||
-- Default Applications :
|
||||
--terminal = "alacritty"
|
||||
terminal = "kitty"
|
||||
web_browser = "brave"
|
||||
editor = os.getenv("EDITOR") or "nano"
|
||||
editor_cmd = terminal .. " -e " .. editor
|
||||
|
||||
|
@ -59,7 +60,9 @@ awful.keyboard.append_global_keybindings({
|
|||
|
||||
awful.key({ modkey, shift }, "q", awesome.quit, {description = "quit awesome", group = "awesome"}),
|
||||
|
||||
awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end, {description = "open a terminal", group = "launcher"}),
|
||||
awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end, {description = "open a terminal", group = "launcher"}),
|
||||
|
||||
awful.key({ modkey, }, "b", function () awful.spawn(web_browser) end, {description = "Open Web Browser", group = "launcher"}),
|
||||
|
||||
awful.key({ modkey, shift }, "Return", function () awful.spawn("xterm") end, {description = "open a terminal", group = "launcher"}),
|
||||
-- awful.key({ modkey }, "p", function() menubar.show() end,
|
||||
|
@ -236,9 +239,6 @@ awful.keyboard.append_global_keybindings({
|
|||
-- ClipMenu :
|
||||
awful.key({ modkey}, "Insert", function () awful.spawn("clipmenu") end,{description = "clipboard history by rofi/clipmenud", group = "awesome"}),
|
||||
|
||||
-- Firefox :
|
||||
awful.key({ modkey }, "b", function () awful.spawn("firefox") end, {description = "Firefox", group = "Web Browser"}),
|
||||
|
||||
-- Center Window :
|
||||
awful.key({ modkey }, "y", awful.placement.centered)
|
||||
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
|
||||
cp -r .local .zprofile .vimrc .xinitrc .xprofile .Xresources .zshrc .bashrc ~/
|
||||
cp -r .config/* ~/.config/
|
||||
xrdb ~/.Xresources
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue