diff --git a/users/caperren/caperren.nix b/users/caperren/caperren.nix index e85791a..61b8671 100644 --- a/users/caperren/caperren.nix +++ b/users/caperren/caperren.nix @@ -82,8 +82,13 @@ in # Custom bash aliases home.shellAliases = { + # Phone remote desktop over usb (adb), with some default flags I want + phonerdp = "scrcpy --no-audio --orientation=0 --turn-screen-off --fullscreen"; + # Streamdeck isn't easy to manually edit, so make a save command to copy any updates to the repo savestreamdeck = "cp ~/.streamdeck_ui.json ~/.nixos-configs/users/caperren/dotfiles/streamdeck/.streamdeck_ui.json"; + + # Nice to have an alias if I ever want to launch this from cmdline, or see the dbus help string screenshot = "~/.config/hypr/scripts/screenshot.sh"; }; @@ -109,6 +114,9 @@ in font.name = "JetBrains Mono 11"; }; + home.sessionPath = [ + "$HOME/.local/share" + ]; home.sessionVariables = { GTK_THEME = "Adwaita-dark"; }; diff --git a/users/caperren/dotfiles/.local/share/phonerdp.desktop b/users/caperren/dotfiles/.local/share/phonerdp.desktop new file mode 100644 index 0000000..5c74e6b --- /dev/null +++ b/users/caperren/dotfiles/.local/share/phonerdp.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Name=Phone RDP +Exec=bash -c "phonerdp" +Icon=phonerdp +Terminal=false +Categories=Utilities; \ No newline at end of file