Compare commits
2 Commits
d01f2b92fd
...
516f64b144
| Author | SHA1 | Date |
|---|---|---|
|
|
516f64b144 | |
|
|
06fc826f7d |
|
|
@ -35,6 +35,7 @@
|
||||||
wlsunset # Day/night gamma adjustment/filter for wayland
|
wlsunset # Day/night gamma adjustment/filter for wayland
|
||||||
sway-contrib.grimshot # Screenshot tool for wayland
|
sway-contrib.grimshot # Screenshot tool for wayland
|
||||||
mako # Notification Daemon
|
mako # Notification Daemon
|
||||||
|
wlprop # Clone of X11 xprop for wayland (To get window class names etc)
|
||||||
|
|
||||||
themix-gui # Application to design GTK themes
|
themix-gui # Application to design GTK themes
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -87,6 +87,9 @@ gaps outer 5
|
||||||
# Start your launcher
|
# Start your launcher
|
||||||
bindsym $mod+d exec $menu
|
bindsym $mod+d exec $menu
|
||||||
|
|
||||||
|
# Start password manager
|
||||||
|
bindsym Control+Mod1+p exec passmenu
|
||||||
|
|
||||||
# Lock screen
|
# Lock screen
|
||||||
bindsym Mod4+l exec swaylock -c 000000
|
bindsym Mod4+l exec swaylock -c 000000
|
||||||
|
|
||||||
|
|
@ -137,9 +140,9 @@ gaps outer 5
|
||||||
bindsym $mod+5 workspace number 5
|
bindsym $mod+5 workspace number 5
|
||||||
bindsym $mod+6 workspace number 6
|
bindsym $mod+6 workspace number 6
|
||||||
bindsym $mod+7 workspace number 7
|
bindsym $mod+7 workspace number 7
|
||||||
bindsym $mod+8 workspace number 8
|
bindsym $mod+8 workspace number 8 Chat
|
||||||
bindsym $mod+9 workspace number 9
|
bindsym $mod+9 workspace number 9 Games
|
||||||
bindsym $mod+0 workspace number 10
|
bindsym $mod+0 workspace number 10 Audio
|
||||||
# Move focused container to workspace
|
# Move focused container to workspace
|
||||||
bindsym $mod+Shift+1 move container to workspace number 1
|
bindsym $mod+Shift+1 move container to workspace number 1
|
||||||
bindsym $mod+Shift+2 move container to workspace number 2
|
bindsym $mod+Shift+2 move container to workspace number 2
|
||||||
|
|
@ -148,11 +151,21 @@ gaps outer 5
|
||||||
bindsym $mod+Shift+5 move container to workspace number 5
|
bindsym $mod+Shift+5 move container to workspace number 5
|
||||||
bindsym $mod+Shift+6 move container to workspace number 6
|
bindsym $mod+Shift+6 move container to workspace number 6
|
||||||
bindsym $mod+Shift+7 move container to workspace number 7
|
bindsym $mod+Shift+7 move container to workspace number 7
|
||||||
bindsym $mod+Shift+8 move container to workspace number 8
|
bindsym $mod+Shift+8 move container to workspace number 8 Chat
|
||||||
bindsym $mod+Shift+9 move container to workspace number 9
|
bindsym $mod+Shift+9 move container to workspace number 9 Games
|
||||||
bindsym $mod+Shift+0 move container to workspace number 10
|
bindsym $mod+Shift+0 move container to workspace number 10 Audio
|
||||||
# Note: workspaces can have any name you want, not just numbers.
|
# Note: workspaces can have any name you want, not just numbers.
|
||||||
# We just use 1-10 as the default.
|
# We just use 1-10 as the default.
|
||||||
|
|
||||||
|
# A bit of window rules in regards to Chat/Games/Audio workspaces
|
||||||
|
assign [class="discord"] number 8 Chat
|
||||||
|
assign [class="org.telegram.desktop"] number 8 Chat
|
||||||
|
assign [title="Telegram"] number 8 Chat
|
||||||
|
assign [class="steam"] number 9 Games
|
||||||
|
assign [title="steam"] number 9 Games
|
||||||
|
assign [class="ardour"] number 10 Audio
|
||||||
|
# qpwgraph
|
||||||
|
assign [title="A PipeWire Graph Qt GUI Interface"] number 10 Audio
|
||||||
#
|
#
|
||||||
# Layout stuff:
|
# Layout stuff:
|
||||||
#
|
#
|
||||||
|
|
@ -236,3 +249,6 @@ bar {
|
||||||
}
|
}
|
||||||
|
|
||||||
include /etc/sway/config.d/*
|
include /etc/sway/config.d/*
|
||||||
|
|
||||||
|
# Autostart
|
||||||
|
exec qpwgraph
|
||||||
|
|
@ -107,6 +107,11 @@
|
||||||
";
|
";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Virt Manager Installation
|
||||||
|
virtualisation.libvirtd.enable = true;
|
||||||
|
programs.virt-manager.enable = true;
|
||||||
|
|
||||||
|
|
||||||
# Some programs need SUID wrappers, can be configured further or are
|
# Some programs need SUID wrappers, can be configured further or are
|
||||||
# started in user sessions.
|
# started in user sessions.
|
||||||
# programs.mtr.enable = true;
|
# programs.mtr.enable = true;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue