Skip to content

Commit

Permalink
Add hyprshot
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasl-dev committed Jun 16, 2024
1 parent 3e8eb9e commit 6e63c3b
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 1 deletion.
15 changes: 15 additions & 0 deletions dots/ags/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

# Starter Config

if suggestions don't work, first make sure
you have TypeScript LSP working in your editor

if you do not want typechecking only suggestions

```json
// tsconfig.json
"checkJs": false
```

types are symlinked to:
/home/lukas/.local/share/com.github.Aylur.ags/types
18 changes: 18 additions & 0 deletions dots/ags/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"lib": [
"ES2022"
],
"allowJs": true,
"checkJs": true,
"strict": true,
"noImplicitAny": false,
"baseUrl": ".",
"typeRoots": [
"./types"
],
"skipLibCheck": true
}
}
1 change: 1 addition & 0 deletions dots/ags/types
2 changes: 1 addition & 1 deletion home/ags/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

programs.ags = {
enable = true;
# configDir = ./
configDir = ../../dots/ags;
extraPackages = with pkgs; [
gtksourceview
webkitgtk
Expand Down
6 changes: 6 additions & 0 deletions home/hyprland/hyprpaper.nix
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{ pkgs, ... }:

{
services.hyprpaper = {
enable = true;
Expand All @@ -17,4 +19,8 @@
];
};
};

home.packages = with pkgs; [
hyprshot
];
}

0 comments on commit 6e63c3b

Please sign in to comment.