chore: merge remote-tracking branch 'refs/remotes/origin/master'

This commit is contained in:
Ahwx 2025-05-25 03:57:54 +02:00
commit e5f317be86
9 changed files with 96 additions and 43 deletions

View file

@ -1,4 +1,4 @@
{ lib, ... }:
{ lib, config, ... }:
{
services.openssh = {
enable = true;
@ -11,6 +11,8 @@
};
};
networking.firewall.allowedTCPPorts = [ config.services.openssh.ports ];
users.users.liv.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGXi00z/rxVrWLKgYr+tWIsbHsSQO75hUMSTThNm5wUw liv@sakura" # main laptop
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ2nsQHyWnrmuQway0ehoMUcYYfhD8Ph/vpD0Tzip1b1 liv@meow" # main phone

View file

@ -214,6 +214,7 @@
bind = [
# keybindings
"$mainMod, Return, exec, kitty"
"$mainMod, Backspace, exec, [float; center; size 950 650] kitty"
"$mainMod, Q, killactive,"
"$mainMod, F, fullscreen, 0" # set 1 to 0 to set full screen without waybar
"$mainMod, Space, togglefloating,"

View file

@ -1,8 +1,7 @@
{ inputs, pkgs, ... }:
{
home.packages = with pkgs; [
# swww
swaybg
swww
inputs.hypr-contrib.packages.${pkgs.system}.grimblast
hyprpicker
grim

View file

@ -1,7 +0,0 @@
#!/usr/bin/env bash
if (ps aux | grep mpv | grep -v grep > /dev/null) then
pkill mpv
else
runbg mpv --no-video https://www.youtube.com/live/jfKfPfyJRdk?si=OF0HKrYFFj33BzMo
fi

View file

@ -1,7 +1,7 @@
#!/bin/sh
# MIT license
# Ahwx <ahwx at ahwx dot org> https://ahwx.org - 2024
# liv < liv at liv dot town > https://liv.town - 2024
#
# Dependencies: find/grep/bemenu/ping/git/
@ -14,9 +14,9 @@ echo "Check if connected to internet and pull changes from Git"
ping -c1 github.com >/dev/null && notify-send "$(git pull)" # Pull most recent changes, be sure to not create conficts...
if [ "$CHOSEN" ]; then
kitty -e nvim "$CHOSEN" # Finally open chosen note
kitty -e nvim "$CHOSEN" # Finally open chosen note
git add "$CHOSEN" && git commit -m "chore: updates (auto)" && git push && notify-send "Changes pushed"
git add "$CHOSEN" && git commit -m "chore: updates (auto)" && git push && notify-send "Changes pushed"
else
exit 1
exit 1
fi

View file

@ -1,9 +0,0 @@
#!/usr/bin/env bash
PIDS=$(pgrep -f "swaybg")
swaybg -m fill -i $1 &
if [ -n "$PIDS" ]; then
echo "$PIDS" | xargs kill
fi

View file

@ -1,12 +0,0 @@
#!/usr/bin/env bash
wallpaper_path=$HOME/Pictures/wallpapers
wallpapers_folder=$HOME/Pictures/wallpapers/others
wallpaper_name="$(ls $wallpapers_folder | bemenu -l 15)"
if [[ -f $wallpapers_folder/$wallpaper_name ]]; then
find ~/Pictures/wallpapers -maxdepth 1 -type f -delete
cp $wallpapers_folder/$wallpaper_name $wallpaper_path/$wallpaper_name
wall-change $wallpaper_path/$wallpaper_name
else
exit 1
fi

View file

@ -26,8 +26,6 @@
networking.firewall = {
allowedTCPPorts = [
9001
22
9123 # always also allow ssh :screaming:
];
};
}