Skip to content

Commit

Permalink
Add WM combination to spawn terminal with path selection
Browse files Browse the repository at this point in the history
  • Loading branch information
asciimoth committed Sep 22, 2023
1 parent 1a11d9e commit 2444a04
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 166 deletions.
152 changes: 3 additions & 149 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 0 additions & 16 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,6 @@
url = "github:nix-community/NUR";
#inputs.nixpkgs.follows = "nixpkgs";
};
#agenix = {
# url = "github:ryantm/agenix";
# inputs.nixpkgs.follows = "nixpkgs";
#};
nixpkgs-wayland = {
url = "github:colemickens/nixpkgs-wayland";
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs";
Expand All @@ -35,11 +27,6 @@
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
#systems.url = "github:nix-systems/x86_64-linux";
#flake-utils = {
# url = "github:numtide/flake-utils";
# inputs.systems.follows = "systems";
#;
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
Expand All @@ -51,8 +38,6 @@
home-manager,
stable,
nur,
#agenix,
nixpkgs-wayland,
stylix,
sops-nix,
pre-commit-hooks,
Expand All @@ -79,7 +64,6 @@
./machines/pcLexell
home-manager.nixosModules.home-manager
nur.nixosModules.nur
#agenix.nixosModules
stylix.nixosModules.stylix
sops-nix.nixosModules.sops
{nixpkgs.overlays = [nur.overlay];}
Expand Down
3 changes: 2 additions & 1 deletion machines/pcLexell/awesome/awesome/rc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -327,11 +327,12 @@ globalkeys = gears.table.join(
-- Standard program
awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end,
{description = "open a terminal", group = "launcher"}),
awful.key({ modkey, "Shift" }, "Return", function () awful.spawn(terminal .. " -e fish -C cdd") end,
{description = "open a terminal", group = "launcher"}),
awful.key({ modkey, "Control" }, "r", awesome.restart,
{description = "reload awesome", group = "awesome"}),
awful.key({ modkey, "Shift" }, "q", awesome.quit,
{description = "quit awesome", group = "awesome"}),

awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end,
{description = "increase master width factor", group = "layout"}),
awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end,
Expand Down

0 comments on commit 2444a04

Please sign in to comment.