From b4a2d61f38824a43a87b63f145f9a41ec0db1073 Mon Sep 17 00:00:00 2001 From: makefu Date: Fri, 14 May 2021 23:53:59 +0200 Subject: ma awesomecfg: fix issue with windows popping up at the wrong screen --- makefu/5pkgs/awesomecfg/default.nix | 1 - makefu/5pkgs/awesomecfg/full.cfg | 19 ++----------------- 2 files changed, 2 insertions(+), 18 deletions(-) (limited to 'makefu/5pkgs') diff --git a/makefu/5pkgs/awesomecfg/default.nix b/makefu/5pkgs/awesomecfg/default.nix index 7a4d3013..8552634f 100644 --- a/makefu/5pkgs/awesomecfg/default.nix +++ b/makefu/5pkgs/awesomecfg/default.nix @@ -16,7 +16,6 @@ full = lib.makeOverridable pkgs.substituteAll { name = "awesome_full_config"; inherit alsaUtils locker xbacklight modkey networkmanagerapplet blueman clipit flameshot ; - chaptermarker = chapter-marker; isExecutable = false; src = ./full.cfg; }; diff --git a/makefu/5pkgs/awesomecfg/full.cfg b/makefu/5pkgs/awesomecfg/full.cfg index 86b401cf..bbf15e60 100644 --- a/makefu/5pkgs/awesomecfg/full.cfg +++ b/makefu/5pkgs/awesomecfg/full.cfg @@ -303,16 +303,6 @@ globalkeys = awful.util.table.join( awful.key({ modkey, }, "Right", awful.tag.viewnext ), awful.key({ modkey, }, "Escape", awful.tag.history.restore), - awful.key({ modkey, }, "j", - function () - awful.client.focus.byidx( 1) - if client.focus then client.focus:raise() end - end), - awful.key({ modkey, }, "k", - function () - awful.client.focus.byidx(-1) - if client.focus then client.focus:raise() end - end), awful.key({ modkey, }, "w", function () mymainmenu:show() end), -- Layout manipulation @@ -376,12 +366,6 @@ globalkeys = awful.util.table.join( awful.key({ }, "XF86AudioMute", function () awful.util.spawn("@alsaUtils@/bin/amixer -q -D default sset Master toggle", false) end), - -- chapter-marker - awful.key({ "Control" }, "u", function () awful.spawn("@chaptermarker@/bin/chapter-start") end, - {description = "start the chapter marker",}), - awful.key({ "Control" }, "j", function () awful.spawn("@chaptermarker@/bin/chapter-mark") end, - {description = "create a chapter mark",}), - -- Prompt awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end, {description = "run prompt", group = "launcher"}), @@ -485,12 +469,13 @@ root.keys(globalkeys) -- {{{ Rules awful.rules.rules = { - -- All clients will match this rule. +-- -- All clients will match this rule. { rule = { }, properties = { border_width = beautiful.border_width, border_color = beautiful.border_normal, focus = awful.client.focus.filter, keys = clientkeys, + screen = awful.screen.focused, buttons = clientbuttons } }, --{ rule = { class = "MPlayer" }, -- properties = { floating = true } }, -- cgit v1.2.3 From a9559220882b3f9959173e6c38e93033c46c3357 Mon Sep 17 00:00:00 2001 From: makefu Date: Sat, 15 May 2021 13:18:36 +0200 Subject: ma pkgs.studio-link: bump to 21.03.2 --- makefu/5pkgs/studio-link/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'makefu/5pkgs') diff --git a/makefu/5pkgs/studio-link/default.nix b/makefu/5pkgs/studio-link/default.nix index 16954a9a..4d595d9f 100644 --- a/makefu/5pkgs/studio-link/default.nix +++ b/makefu/5pkgs/studio-link/default.nix @@ -11,11 +11,11 @@ stdenv.mkDerivation rec { name = "studio-link-${version}"; - version = "20.05.5"; + version = "21.03.2"; src = fetchurl { url = "https://download.studio.link/releases/v${version}-stable/linux/studio-link-standalone-v${version}.tar.gz"; - sha256 = "0wmcvihyxf4xvgrspvy3qhhabczv86hdfcfq61jv51hfrzibc2q1"; + sha256 = "0szaym9lrkbnwxaffab9snlsij6kkwlin70d36bm3vi2la8iayc6"; }; nativeBuildInputs = [ -- cgit v1.2.3