Compare commits

...

3 commits

3 changed files with 9 additions and 6 deletions

View file

@ -243,12 +243,12 @@
"nofullscreenrequest, class:x2goclient|Nxplayer.bin"
"nomaximizerequest, class:x2goclient|Nxplayer.bin"
"float, title:(X2Go Client|Freia|Heimdall), class:x2goclient"
"float, title:NoMachine, class:Nxplayer.bin"
"float, title:(NoMachine)(.*), class:Nxplayer.bin"
"center, title:(X2Go Client|Freia|Heimdall), class:x2goclient"
"center, title:NoMachine, class:Nxplayer.bin"
"center, title:(NoMachine)(.*), class:Nxplayer.bin"
"size 800 600, title:X2Go Client, class:x2goclient"
"size 1920 1080, title:Freia|Heimdall, class:x2goclient"
"size 1920 1080, title:NoMachine, class:Nxplayer.bin"
"size 1920 1080, title:(NoMachine)(.*), class:Nxplayer.bin"
];
bind = let
withTerm = {
@ -297,7 +297,7 @@
# Rofi binds
"SUPER, Space, exec, pkill rofi || ${rofi.finalPackage}/bin/rofi -show drun"
"SUPER, tab, exec, pkill rofi || ${rofi.finalPackage}/bin/rofi -show window"
"SUPER SHIFT, Return, exec, pkill rofi || ${rofi.finalPackage}/bin/rofi -show ssh"
"SUPER, A, exec, pkill rofi || ${rofi.finalPackage}/bin/rofi -show emoji"
# rofi-pass binds
"SUPER, P, exec, pkill rofi || ${rofi.pass.package}/bin/rofi-pass"

View file

@ -1,6 +1,6 @@
HOST=$1
# Config files
for TARGET in bat bottom git zellij starship.toml; do
for TARGET in bat bottom git starship.toml; do
SOURCE="$HOME/.config/$TARGET"
echo "--- $SOURCE ---"
TMP_TARGET=/tmp/rsync-local-config

View file

@ -1,5 +1,8 @@
{pkgs, ...}: {
imports = [../Scorch/home.nix];
home.packages = [(pkgs.writeShellScriptBin "ukaea-vpn-connect" "sudo ${pkgs.openfortivpn}/bin/openfortivpn -c ${./ukaea-vpn.conf}")];
wayland.windowManager.hyprland.settings.monitor = ["eDP-1,1920x1080,2560x576,1.20"];
wayland.windowManager.hyprland.settings = {
workspace = ["4, monitor:eDP-1, default:true"];
monitor = ["eDP-1,1920x1080,2560x576,1.20"];
};
}