mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-24 05:35:29 -08:00
Compare commits
4 commits
5c4b11a9c1
...
b4d50ea4e8
Author | SHA1 | Date | |
---|---|---|---|
|
b4d50ea4e8 | ||
|
c724b1ea33 | ||
|
2661c477e9 | ||
|
0f1c25d607 |
7 changed files with 22 additions and 28 deletions
|
@ -10,11 +10,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1723066064,
|
"lastModified": 1721158338,
|
||||||
"narHash": "sha256-xDFYPXWKJ5K6Nn/8u9vtlLv++6Eh5fCiHb3Vp3Giol8=",
|
"narHash": "sha256-6E9z278Uh5tw2T9lQYq2SpTwmzq+/mKO99s8vZ9amgs=",
|
||||||
"owner": "atuinsh",
|
"owner": "atuinsh",
|
||||||
"repo": "atuin",
|
"repo": "atuin",
|
||||||
"rev": "ea991d5f453c5ec98f144b1ae1c61857c5096cc8",
|
"rev": "39824db32a1e6a1b794f3d0b8a1cce385dece19b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/env bash
|
|
||||||
|
|
||||||
|
|
||||||
echo "{ }"
|
|
|
@ -1,17 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
|
|
||||||
moonstate=$(gcal --resource-file=$HOME/.config/eww/scripts/moontime | awk '{print $4}')
|
|
||||||
|
|
||||||
sunstate=$(gcal --resource-file=$HOME/.config/eww/scripts/suntime | awk '{print $4}')
|
|
||||||
|
|
||||||
moonrise=$(echo $moonstate | awk '{print $1}')
|
|
||||||
moonset=$(echo $moonstate | awk '{print $2}')
|
|
||||||
moonphase=$(echo $moonstate | awk '{print $3}')
|
|
||||||
|
|
||||||
sunrise=$(echo $sunstate | awk '{print $1}')
|
|
||||||
sunset=$(echo $sunstate | awk '{print $2}')
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
echo "{ \"has_color\": false, \"is_sun\": true, \"gradient_angle\": 45 }"
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
hyprctl monitors -j | jq '.[] | select(.focused) | .activeWorkspace.id'
|
# hyprctl monitors -j | jaq '.[] | select(.focused) | .activeWorkspace.id'
|
||||||
|
|
||||||
socat -u UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - |
|
socat -u UNIX-CONNECT:$XDG_RUNTIME_DIR/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - |
|
||||||
stdbuf -o0 awk -F '>>|,' -e '/^workspace>>/ {print $2}' -e '/^focusedmon>>/ {print $3}'
|
stdbuf -o0 awk -F '>>|,' -e '/^workspace>>/ {print $2}' -e '/^focusedmon>>/ {print $3}'
|
||||||
|
|
|
@ -9,4 +9,4 @@ esac
|
||||||
|
|
||||||
[ -n "$command" ] && pw-volume $command
|
[ -n "$command" ] && pw-volume $command
|
||||||
|
|
||||||
$2 update volume=$(pw-volume status | jq '.percentage // 10')
|
$2 update volume=$(pw-volume status | jaq '.percentage // 10')
|
||||||
|
|
|
@ -14,6 +14,7 @@ in
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../ewwbar
|
../ewwbar
|
||||||
|
./window_rules.nix
|
||||||
./keybinds.nix
|
./keybinds.nix
|
||||||
./displays.nix
|
./displays.nix
|
||||||
];
|
];
|
||||||
|
|
14
modules/hyprland/window_rules.nix
Normal file
14
modules/hyprland/window_rules.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{lib, pkgs, ...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
wayland.windowManager.hyprland.settings = {
|
||||||
|
# See here for details
|
||||||
|
# https://wiki.hyprland.org/Configuring/Window-Rules/#syntax
|
||||||
|
# to see active window details:
|
||||||
|
# hyprctl clients
|
||||||
|
windowrulev2 = [
|
||||||
|
"float,class:(Rofi)"
|
||||||
|
"float,title:(dbeaver)"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue