Compare commits
3 commits
def3b8b267
...
fdba59544c
Author | SHA1 | Date | |
---|---|---|---|
Evie Litherland-Smith | fdba59544c | ||
Evie Litherland-Smith | bbbe86735a | ||
Evie Litherland-Smith | 2011c16fc4 |
|
@ -243,12 +243,12 @@
|
||||||
"nofullscreenrequest, class:x2goclient|Nxplayer.bin"
|
"nofullscreenrequest, class:x2goclient|Nxplayer.bin"
|
||||||
"nomaximizerequest, class:x2goclient|Nxplayer.bin"
|
"nomaximizerequest, class:x2goclient|Nxplayer.bin"
|
||||||
"float, title:(X2Go Client|Freia|Heimdall), class:x2goclient"
|
"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:(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 800 600, title:X2Go Client, class:x2goclient"
|
||||||
"size 1920 1080, title:Freia|Heimdall, 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
|
bind = let
|
||||||
withTerm = {
|
withTerm = {
|
||||||
|
@ -297,7 +297,7 @@
|
||||||
# Rofi binds
|
# Rofi binds
|
||||||
"SUPER, Space, exec, pkill rofi || ${rofi.finalPackage}/bin/rofi -show drun"
|
"SUPER, Space, exec, pkill rofi || ${rofi.finalPackage}/bin/rofi -show drun"
|
||||||
"SUPER, tab, exec, pkill rofi || ${rofi.finalPackage}/bin/rofi -show window"
|
"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
|
# rofi-pass binds
|
||||||
"SUPER, P, exec, pkill rofi || ${rofi.pass.package}/bin/rofi-pass"
|
"SUPER, P, exec, pkill rofi || ${rofi.pass.package}/bin/rofi-pass"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
HOST=$1
|
HOST=$1
|
||||||
# Config files
|
# 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"
|
SOURCE="$HOME/.config/$TARGET"
|
||||||
echo "--- $SOURCE ---"
|
echo "--- $SOURCE ---"
|
||||||
TMP_TARGET=/tmp/rsync-local-config
|
TMP_TARGET=/tmp/rsync-local-config
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
imports = [../Scorch/home.nix];
|
imports = [../Scorch/home.nix];
|
||||||
home.packages = [(pkgs.writeShellScriptBin "ukaea-vpn-connect" "sudo ${pkgs.openfortivpn}/bin/openfortivpn -c ${./ukaea-vpn.conf}")];
|
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"];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue