Compare commits
3 Commits
46bf2e8e99
...
1666a0225b
Author | SHA1 | Date | |
---|---|---|---|
1666a0225b | |||
3f7df29793 | |||
6fffe45227 |
@@ -183,11 +183,13 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
# ================================
|
# ================================
|
||||||
# BROWSER OPTIMIZATIONS
|
# ENVIRONMENT VARIABLES
|
||||||
# ================================
|
# ================================
|
||||||
# Improve touchscreen and scrolling support in Firefox
|
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
|
# Improve touchscreen and scrolling support in Firefox
|
||||||
MOZ_USE_XINPUT2 = "1";
|
MOZ_USE_XINPUT2 = "1";
|
||||||
|
# Screenshot directory for Hyprshot
|
||||||
|
HYPRSHOT_DIR = "$HOME/Nextcloud/Home-sync/Pictures/Screenshots";
|
||||||
};
|
};
|
||||||
|
|
||||||
# ================================
|
# ================================
|
||||||
|
@@ -116,6 +116,7 @@
|
|||||||
# ---- SCREENSHOT & RECORDING ----
|
# ---- SCREENSHOT & RECORDING ----
|
||||||
grim # Screenshot tool for Wayland
|
grim # Screenshot tool for Wayland
|
||||||
slurp # Screen area selection for screenshots
|
slurp # Screen area selection for screenshots
|
||||||
|
hyprshot # Screenshot tool for Hyprland
|
||||||
swappy # Screenshot editing and annotation
|
swappy # Screenshot editing and annotation
|
||||||
wf-recorder # Screen recording for Wayland
|
wf-recorder # Screen recording for Wayland
|
||||||
|
|
||||||
|
@@ -84,15 +84,16 @@ in {
|
|||||||
# Bindings
|
# Bindings
|
||||||
bind =
|
bind =
|
||||||
[
|
[
|
||||||
"$mod, RETURN, exec, $terminal"
|
"$mod, RETURN, exec, $terminal" # Open terminal
|
||||||
"$mod, C, killactive"
|
"$mod, C, killactive" # Kill active window
|
||||||
"$mod, E, exec, $filemanager"
|
"$mod, E, exec, $filemanager" # Open file manager
|
||||||
"$mod, SPACE, exec, $menu"
|
"$mod, SPACE, exec, $menu" # Show menu (rofi)
|
||||||
"$mod, V, exec, cliphist list | dmenu | cliphist decode | wl-copy"
|
"$mod, V, exec, cliphist list | rofi -dmenu | cliphist decode | wl-copy" # Show Clipboard history
|
||||||
", Print, exec, grimblast copy area"
|
", PRINT, exec, hyprshot -m region" # Screenshot region
|
||||||
"$mod, F, togglefloating"
|
"$mod, PRINT, exec, hyprshot -m window" # Screenshot window
|
||||||
|
"$mod, F, togglefloating" # Make active window floating
|
||||||
"$mod, J, togglesplit, " # dwindle
|
"$mod, J, togglesplit, " # dwindle
|
||||||
"$mod, L, exec, hyprlock"
|
"$mod, L, exec, hyprlock" # Lock screen
|
||||||
|
|
||||||
# Move focus with mainMod + arrow keys
|
# Move focus with mainMod + arrow keys
|
||||||
"$mod, left, movefocus, l"
|
"$mod, left, movefocus, l"
|
||||||
|
@@ -7,7 +7,8 @@ in {
|
|||||||
background = {
|
background = {
|
||||||
# Background image is set in host specific configuration
|
# Background image is set in host specific configuration
|
||||||
#path = "$HOME/git/nixos/modules/home/images/sky.png";
|
#path = "$HOME/git/nixos/modules/home/images/sky.png";
|
||||||
blur_passes = 2;
|
blur_size = 3;
|
||||||
|
blur_passes = 4;
|
||||||
contrast = 1;
|
contrast = 1;
|
||||||
brightness = 0.5;
|
brightness = 0.5;
|
||||||
vibrancy = 0.2;
|
vibrancy = 0.2;
|
||||||
|
@@ -14,6 +14,9 @@
|
|||||||
in {
|
in {
|
||||||
# Common packages for ALL systems
|
# Common packages for ALL systems
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
# misc
|
||||||
|
xdg-user-dirs
|
||||||
|
|
||||||
# networking
|
# networking
|
||||||
wget
|
wget
|
||||||
whois
|
whois
|
||||||
|
Reference in New Issue
Block a user