Compare commits
2 commits
a11f866037
...
1f35500e55
Author | SHA1 | Date | |
---|---|---|---|
1f35500e55 | |||
866782e474 |
5 changed files with 5 additions and 56 deletions
|
@ -31,6 +31,8 @@ in
|
||||||
gnome.gnome-keyring.enable = true; # For remembering nextcloud login, among other things
|
gnome.gnome-keyring.enable = true; # For remembering nextcloud login, among other things
|
||||||
gvfs.enable = true; # For Trash
|
gvfs.enable = true; # For Trash
|
||||||
};
|
};
|
||||||
|
programs.hyprland.enable = true;
|
||||||
|
programs.sway.enable = true;
|
||||||
|
|
||||||
xdg.portal.enable = true;
|
xdg.portal.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -8,10 +8,12 @@
|
||||||
# nvidiaXineramaInfoOrder sets primary display
|
# nvidiaXineramaInfoOrder sets primary display
|
||||||
# DFP-0 is default and would set left monitor, DVI-D-0, to be primary
|
# DFP-0 is default and would set left monitor, DVI-D-0, to be primary
|
||||||
screenSection = ''
|
screenSection = ''
|
||||||
Option "metamodes" "DVI-D-0: 1920x1080 +0+0, HDMI-0: 1920x1080 +1920+0, DP-3: 1920x1080 +1920+0"
|
Option "metamodes" "DVI-D-0: 1920x1080 +0+0 {rotation=left}, HDMI-0: 1920x1080 +1080+420"
|
||||||
Option "nvidiaXineramaInfoOrder" "DFP-1"
|
Option "nvidiaXineramaInfoOrder" "DFP-1"
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
# https://www.sven.de/dpi/
|
||||||
|
services.xserver.dpi = 92;
|
||||||
|
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -2,17 +2,6 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
xsession.windowManager.i3.config = {
|
xsession.windowManager.i3.config = {
|
||||||
startup = [
|
|
||||||
{
|
|
||||||
command = let layout = pkgs.substituteAll {
|
|
||||||
src = ./layout.sh;
|
|
||||||
tree = ./tree.json;
|
|
||||||
isExecutable = true;
|
|
||||||
}; in "${layout}";
|
|
||||||
always = true;
|
|
||||||
notification = false;
|
|
||||||
}
|
|
||||||
];
|
|
||||||
workspaceOutputAssign = [
|
workspaceOutputAssign = [
|
||||||
{
|
{
|
||||||
output = "HDMI-0";
|
output = "HDMI-0";
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
# Exit layout script if Firefox or Discord is open,
|
|
||||||
# i3 has been reloaded
|
|
||||||
pgrep firefox || pgrep Discord && exit 0
|
|
||||||
|
|
||||||
# Switch to workspace 1
|
|
||||||
i3-msg workspace 1
|
|
||||||
# Start up Firefox in the background
|
|
||||||
firefox &
|
|
||||||
# Give Firefox some time to start up
|
|
||||||
sleep 1
|
|
||||||
|
|
||||||
# Switch to workspace 2, load layout, and open blank space
|
|
||||||
i3-msg "workspace 2; append_layout @tree@; open"
|
|
||||||
# Move blank space to appropriate space,
|
|
||||||
# i3 layout files don't support blank space
|
|
||||||
for i in {1..4}; do
|
|
||||||
i3-msg move left
|
|
||||||
done
|
|
||||||
# Start up Discord in the background
|
|
||||||
discord &
|
|
||||||
# Open YouTube for music
|
|
||||||
firefox --new-window https://youtube.com
|
|
||||||
# Go back to primary workspace
|
|
||||||
i3-msg workspace 1
|
|
|
@ -1,20 +0,0 @@
|
||||||
// vim:ts=4:sw=4:et
|
|
||||||
{
|
|
||||||
"layout": "splitv",
|
|
||||||
"type": "con",
|
|
||||||
"nodes": [
|
|
||||||
{
|
|
||||||
"swallows": [{ "class": "^firefox$" }],
|
|
||||||
"type": "con"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"swallows": [{ "title": "Discord Updater" }],
|
|
||||||
"type": "con"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"swallows": [{ "class": "^discord$" }],
|
|
||||||
"type": "con"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue