Add a file with all recommanded shortcuts

This commit is contained in:
Emmanuel Lepage Vallee 2014-10-14 23:37:08 -04:00
parent dbaaec7d36
commit 5038904ae1
1 changed files with 109 additions and 0 deletions

109
shortcut.lua Normal file
View File

@ -0,0 +1,109 @@
local capi = {root=root,client=client,tag=tag,mouse=mouse}
local ipairs = ipairs
local unpack = unpack
local aw_util = require( "awful.util" )
local aw_tag = require( "awful.tag" )
local aw_client = require( "awful.client" )
local aw_layout = require( "awful.layout" )
local aw_key = require( "awful.key" )
local aw_prompt = require( "awful.prompt" )
local glib = require( "lgi" ).GLib
-- Delete a tag as of 3.5.5, this have a few issue. Patches are on their way
local function delete_tag()
aw_tag.delete(capi.client.focus and aw_tag.selected(capi.client.focus.screen) or aw_tag.selected(capi.mouse.screen) )
end
-- Create a new tag at the end of the list
local function new_tag()
aw_tag.viewonly(aw_tag.add("NewTag",{screen= (capi.client.focus and capi.client.focus.screen or capi.mouse.screen) }))
end
local function new_tag_with_focussed()
local c = capi.client.focus
local t = aw_tag.add(c.class,{screen= (capi.client.focus and capi.client.focus.screen or capi.mouse.screen),layout=aw_layout.suit.tile })
if c then c:tags(aw_util.table.join(c:tags(), {t})) end
aw_tag.viewonly(t)
end
local function move_to_new_tag()
local c = capi.client.focus
local t = aw_tag.add(c.class,{screen= (capi.client.focus and capi.client.focus.screen or capi.mouse.screen) })
if c then
c:tags({t})
aw_tag.viewonly(t)
end
end
local function rename_tag_to_focussed()
if capi.client.focus then
local t = aw_tag.selected(capi.client.focus.screen)
t.name = capi.client.focus.class
end
end
local function rename_tag()
aw_prompt.run({ prompt = "New tag name: " },
mypromptbox[capi.mouse.screen].widget,
function(new_name)
if not new_name or #new_name == 0 then
return
else
local screen = capi.mouse.screen
local t = aw_tag.selected(screen)
if t then
t.name = new_name
end
end
end
)
end
local function term_in_current_tag()
aw_util.spawn(terminal,{intrusive=true,slave=true})
end
local function new_tag_with_term()
aw_util.spawn(terminal,{new_tag={volatile = true}})
end
local function fork_tag()
local s = capi.client.focus and capi.client.focus.screen or capi.mouse.screen
local t = aw_tag.selected(s)
if not t then return end
local clients = t:clients()
local t2 = aw_tag.add(t.name,aw_tag.getdata(t))
t2:clients(clients)
aw_tag.viewonly(t2)
end
local function aero_tag()
local c = capi.client.focus
if not c then return end
local c2 = aw_client.data.focus[2]
if (not c2) or c2 == c then return end
local t = aw_tag.add("Aero",{screen= c.screen ,layout=aw_layout.suit.tile,mwfact=0.5})
t:clients({c,c2})
aw_tag.viewonly(t)
end
local function register_keys()
local keys = {}
-- Comment the lines of the shortcut you don't want
for _,data in ipairs {
{{ modkey }, "d" , delete_tag },
{{ modkey }, "n" , new_tag },
{{ modkey, "Shift" }, "n" , new_tag_with_focussed },
{{ modkey, "Mod1" }, "n" , move_to_new_tag },
{{ modkey, "Mod1" }, "r" , rename_tag_to_focussed},
{{ modkey, "Shift" }, "r" , rename_tag },
{{ modkey, "Mod1" }, "Return", term_in_current_tag },
{{ modkey, "Control" }, "Return", new_tag_with_term },
{{ modkey, "Control" }, "f" , fork_tag },
{{ modkey }, "a" , aero_tag },
} do
keys[#keys+1] = aw_key(data[1], data[2], data[3])
end
capi.root.keys(aw_util.table.join(capi.root.keys(),unpack(keys)))
end
glib.idle_add(glib.PRIORITY_DEFAULT_IDLE, register_keys)