initial repo
This commit is contained in:
Executable
+204
@@ -0,0 +1,204 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports =
|
||||||
|
[ # Include the results of the hardware scan.
|
||||||
|
./hardware-configuration.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
# Use the systemd-boot EFI boot loader.
|
||||||
|
# boot.loader.systemd-boot.enable = true;
|
||||||
|
# boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
# Grub Boot Loader Setup
|
||||||
|
boot.loader.grub = {
|
||||||
|
enable = true;
|
||||||
|
zfsSupport = true;
|
||||||
|
efiSupport = true;
|
||||||
|
efiInstallAsRemovable = true;
|
||||||
|
mirroredBoots = [
|
||||||
|
{ devices = [ "nodev" ]; path = "/boot"; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
# zfs File System Declaration
|
||||||
|
|
||||||
|
fileSystems."/" = {
|
||||||
|
device = "zpool/root";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/nix" = {
|
||||||
|
device = "zpool/nix";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/var" = {
|
||||||
|
device = "zpool/var";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/home" = {
|
||||||
|
device = "zpool/home";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/boot" ={
|
||||||
|
device = "/dev/disk/by-uuid/8D3A-0C41";
|
||||||
|
fsType = "vfat";
|
||||||
|
};
|
||||||
|
|
||||||
|
swapDevices = [ ];
|
||||||
|
|
||||||
|
networking.hostName = "nixos";
|
||||||
|
networking.hostId = "4cb9fc76";
|
||||||
|
|
||||||
|
networking.wireless = {
|
||||||
|
enable = true;
|
||||||
|
networks."flooper".pskRaw = "***REMOVED***";
|
||||||
|
networks."NU-Guest" = {
|
||||||
|
priority = -1;
|
||||||
|
};
|
||||||
|
networks.eduroam = {
|
||||||
|
priority = -2;
|
||||||
|
auth = ''
|
||||||
|
key_mgmt=WPA-EAP
|
||||||
|
eap=PEAP
|
||||||
|
identity="rdumblauskas2@unl.edu"
|
||||||
|
password="******"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
extraConfig = "ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel";
|
||||||
|
};
|
||||||
|
|
||||||
|
networking.wireless.userControlled.enable = true; # Enable user to edit wpa_supplicant.
|
||||||
|
networking.networkmanager.enable = false; # Easiest to use and most distros use this by default.
|
||||||
|
|
||||||
|
# Set your time zone.
|
||||||
|
time.timeZone = "America/Chicago";
|
||||||
|
|
||||||
|
# Configure network proxy if necessary
|
||||||
|
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||||
|
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
||||||
|
|
||||||
|
# Select internationalisation properties.
|
||||||
|
# i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
# console = {
|
||||||
|
# font = "Lat2-Terminus16";
|
||||||
|
# keyMap = "us";
|
||||||
|
# useXkbConfig = true; # use xkb.options in tty.
|
||||||
|
# };
|
||||||
|
|
||||||
|
# Enable the X11 windowing system.
|
||||||
|
# services.xserver.enable = true;
|
||||||
|
|
||||||
|
# Configure keymap in X11
|
||||||
|
# services.xserver.xkb.layout = "us";
|
||||||
|
# services.xserver.xkb.options = "eurosign:e,caps:escape";
|
||||||
|
|
||||||
|
# Enable CUPS to print documents.
|
||||||
|
services.printing = {
|
||||||
|
enable = true;
|
||||||
|
browsed.enable = true;
|
||||||
|
browsing = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.avahi = {
|
||||||
|
enable = true;
|
||||||
|
nssmdns4 = true;
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
|
# Enable sound.
|
||||||
|
# hardware.pulseaudio.enable = true;
|
||||||
|
# OR
|
||||||
|
# services.pipewire = {
|
||||||
|
# enable = true;
|
||||||
|
# pulse.enable = true;
|
||||||
|
# };
|
||||||
|
|
||||||
|
# Enable touchpad support (enabled default in most desktopManager).
|
||||||
|
services.libinput.enable = true;
|
||||||
|
|
||||||
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||||
|
users.users.roy = {
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = [ "wheel" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users.net = {
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = [ "wheel" "networkmanager" ];
|
||||||
|
packages = with pkgs; [
|
||||||
|
tree
|
||||||
|
git
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
# List packages installed in system profile. To search, run:
|
||||||
|
# $ nix search wget
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
gimp
|
||||||
|
kitty
|
||||||
|
rose-pine-hyprcursor
|
||||||
|
vim
|
||||||
|
wget
|
||||||
|
];
|
||||||
|
|
||||||
|
fonts.packages = with pkgs; [ nerdfonts ];
|
||||||
|
|
||||||
|
# Some programs need SUID wrappers, can be configured further or are
|
||||||
|
# started in user sessions.
|
||||||
|
# programs.mtr.enable = true;
|
||||||
|
# programs.gnupg.agent = {
|
||||||
|
# enable = true;
|
||||||
|
# enableSSHSupport = true;
|
||||||
|
# };
|
||||||
|
|
||||||
|
# List services that you want to enable:
|
||||||
|
programs.hyprland = {
|
||||||
|
enable = true;
|
||||||
|
xwayland.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.waybar.enable = true;
|
||||||
|
|
||||||
|
programs.firefox = {
|
||||||
|
enable = true;
|
||||||
|
policies = {
|
||||||
|
ExtensionSettings = {
|
||||||
|
"*".installation_mode = "blocked";
|
||||||
|
"uBlock0@raymondhill.net" = {
|
||||||
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
|
||||||
|
installation_mode = "force_installed";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||||
|
|
||||||
|
environment.variables = {
|
||||||
|
EDITOR = "nvim";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Enable the OpenSSH daemon.
|
||||||
|
services.openssh.enable = true;
|
||||||
|
|
||||||
|
# Open ports in the firewall.
|
||||||
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||||
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||||
|
# Or disable the firewall altogether.
|
||||||
|
networking.firewall.enable = false;
|
||||||
|
|
||||||
|
# Copy the NixOS configuration file and link it from the resulting system
|
||||||
|
# (/run/current-system/configuration.nix). This is useful in case you
|
||||||
|
# accidentally delete configuration.nix.
|
||||||
|
# system.copySystemConfiguration = true;
|
||||||
|
|
||||||
|
# INITIAL system version
|
||||||
|
system.stateVersion = "24.11";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
+191
@@ -0,0 +1,191 @@
|
|||||||
|
{
|
||||||
|
"nodes": {
|
||||||
|
"flake-parts": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs-lib": [
|
||||||
|
"nixvim",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1741352980,
|
||||||
|
"narHash": "sha256-+u2UunDA4Cl5Fci3m7S643HzKmIDAe+fiXrLqYsR2fs=",
|
||||||
|
"owner": "hercules-ci",
|
||||||
|
"repo": "flake-parts",
|
||||||
|
"rev": "f4330d22f1c5d2ba72d3d22df5597d123fdb60a9",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "hercules-ci",
|
||||||
|
"repo": "flake-parts",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"flake-utils": {
|
||||||
|
"inputs": {
|
||||||
|
"systems": "systems"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1731533236,
|
||||||
|
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"home-manager": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1744117652,
|
||||||
|
"narHash": "sha256-t7dFCDl4vIOOUMhEZnJF15aAzkpaup9x4ZRGToDFYWI=",
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "home-manager",
|
||||||
|
"rev": "b4e98224ad1336751a2ac7493967a4c9f6d9cb3f",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-community",
|
||||||
|
"ref": "release-24.11",
|
||||||
|
"repo": "home-manager",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ixx": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": [
|
||||||
|
"nixvim",
|
||||||
|
"nuschtosSearch",
|
||||||
|
"flake-utils"
|
||||||
|
],
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixvim",
|
||||||
|
"nuschtosSearch",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1729958008,
|
||||||
|
"narHash": "sha256-EiOq8jF4Z/zQe0QYVc3+qSKxRK//CFHMB84aYrYGwEs=",
|
||||||
|
"owner": "NuschtOS",
|
||||||
|
"repo": "ixx",
|
||||||
|
"rev": "9fd01aad037f345350eab2cd45e1946cc66da4eb",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NuschtOS",
|
||||||
|
"ref": "v0.0.6",
|
||||||
|
"repo": "ixx",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1743367904,
|
||||||
|
"narHash": "sha256-sOos1jZGKmT6xxPvxGQyPTApOunXvScV4lNjBCXd/CI=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "7ffe0edc685f14b8c635e3d6591b0bbb97365e6c",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-24.11",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs_2": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1743472173,
|
||||||
|
"narHash": "sha256-xwNv3FYTC5pl4QVZ79gUxqCEvqKzcKdXycpH5UbYscw=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "88e992074d86ad50249de12b7fb8dbaadf8dc0c5",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixpkgs-unstable",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixvim": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-parts": "flake-parts",
|
||||||
|
"nixpkgs": "nixpkgs_2",
|
||||||
|
"nuschtosSearch": "nuschtosSearch"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1743516183,
|
||||||
|
"narHash": "sha256-IxKxX0aT00oX9BswKA1c76gumpwX/pAoP8NOo4ycgA4=",
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "nixvim",
|
||||||
|
"rev": "5a491f4b2bc132cea2b56bfad0d445708c223113",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "nixvim",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nuschtosSearch": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": "flake-utils",
|
||||||
|
"ixx": "ixx",
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixvim",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1743201766,
|
||||||
|
"narHash": "sha256-bb/dqoIjtIWtJRzASOe8g4m8W2jUIWtuoGPXdNjM/Tk=",
|
||||||
|
"owner": "NuschtOS",
|
||||||
|
"repo": "search",
|
||||||
|
"rev": "2651dbfad93d6ef66c440cbbf23238938b187bde",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NuschtOS",
|
||||||
|
"repo": "search",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": {
|
||||||
|
"inputs": {
|
||||||
|
"home-manager": "home-manager",
|
||||||
|
"nixpkgs": "nixpkgs",
|
||||||
|
"nixvim": "nixvim"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"systems": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1681028828,
|
||||||
|
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": "root",
|
||||||
|
"version": 7
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
description = "System Wide Config Controller";
|
||||||
|
|
||||||
|
inputs = {
|
||||||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
||||||
|
nixvim.url = "github:nix-community/nixvim";
|
||||||
|
home-manager = {
|
||||||
|
url = "github:nix-community/home-manager/release-24.11";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = { self, nixpkgs, nixvim, home-manager }@inputs: {
|
||||||
|
|
||||||
|
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
modules = [
|
||||||
|
./configuration.nix
|
||||||
|
home-manager.nixosModules.home-manager {
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
home-manager.users.roy = { ... }: {
|
||||||
|
imports = [
|
||||||
|
./home.nix
|
||||||
|
nixvim.homeManagerModules.nixvim
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Executable
+53
@@ -0,0 +1,53 @@
|
|||||||
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
|
# and may be overwritten by future invocations. Please make changes
|
||||||
|
# to /etc/nixos/configuration.nix instead.
|
||||||
|
{ config, lib, pkgs, modulesPath, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports =
|
||||||
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||||
|
];
|
||||||
|
|
||||||
|
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
||||||
|
boot.initrd.kernelModules = [ ];
|
||||||
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
|
fileSystems."/" =
|
||||||
|
{ device = "zpool/root";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/nix" =
|
||||||
|
{ device = "zpool/nix";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/var" =
|
||||||
|
{ device = "zpool/var";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/home" =
|
||||||
|
{ device = "zpool/home";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/boot" =
|
||||||
|
{ device = "/dev/disk/by-uuid/8D3A-0C41";
|
||||||
|
fsType = "vfat";
|
||||||
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
swapDevices = [ ];
|
||||||
|
|
||||||
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||||
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||||
|
# still possible to use this option, but it's recommended to use it in conjunction
|
||||||
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||||
|
networking.useDHCP = lib.mkDefault true;
|
||||||
|
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
|
||||||
|
|
||||||
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
}
|
||||||
@@ -0,0 +1,138 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
home.username = "roy";
|
||||||
|
home.homeDirectory = "/home/roy";
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
age
|
||||||
|
dig
|
||||||
|
git
|
||||||
|
kdePackages.gwenview
|
||||||
|
prismlauncher
|
||||||
|
sops
|
||||||
|
tree
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
userName = "Roy Dumblauskas";
|
||||||
|
userEmail = "roydumblauskas@gmail.com";
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.nixvim = {
|
||||||
|
enable = true;
|
||||||
|
opts = {
|
||||||
|
number = true;
|
||||||
|
relativenumber = true;
|
||||||
|
shiftwidth = 2;
|
||||||
|
tabstop = 2;
|
||||||
|
expandtab = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
plugins = {
|
||||||
|
lsp-lines.enable = true;
|
||||||
|
lsp-format.enable = true;
|
||||||
|
lsp = {
|
||||||
|
enable = true;
|
||||||
|
inlayHints = true;
|
||||||
|
servers = {
|
||||||
|
html.enable = true;
|
||||||
|
lua_ls.enable = true;
|
||||||
|
nil_ls.enable = true;
|
||||||
|
ts_ls.enable = true;
|
||||||
|
marksman.enable = true;
|
||||||
|
pyright.enable = true;
|
||||||
|
gopls.enable = true;
|
||||||
|
terraformls.enable = true;
|
||||||
|
ansiblels.enable = true;
|
||||||
|
jsonls.enable = true;
|
||||||
|
yamlls.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
keymaps = {
|
||||||
|
silent = true;
|
||||||
|
lspBuf = {
|
||||||
|
gd = {
|
||||||
|
action = "definition";
|
||||||
|
desc = "Goto Definition";
|
||||||
|
};
|
||||||
|
gr = {
|
||||||
|
action = "references";
|
||||||
|
desc = "Goto References";
|
||||||
|
};
|
||||||
|
gD = {
|
||||||
|
action = "declaration";
|
||||||
|
desc = "Goto Declaration";
|
||||||
|
};
|
||||||
|
gI = {
|
||||||
|
action = "implementation";
|
||||||
|
desc = "Goto Implementation";
|
||||||
|
};
|
||||||
|
gT = {
|
||||||
|
action = "type_definition";
|
||||||
|
desc = "Type Definition";
|
||||||
|
};
|
||||||
|
K = {
|
||||||
|
action = "hover";
|
||||||
|
desc = "Hover";
|
||||||
|
};
|
||||||
|
"<leader>cw" = {
|
||||||
|
action = "workspace_symbol";
|
||||||
|
desc = "Workspace Symbol";
|
||||||
|
};
|
||||||
|
"<leader>cr" = {
|
||||||
|
action = "rename";
|
||||||
|
desc = "Rename";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
diagnostic = {
|
||||||
|
"<leader>cd" = {
|
||||||
|
action = "open_float";
|
||||||
|
desc = "Line Diagnostics";
|
||||||
|
};
|
||||||
|
"]d" = {
|
||||||
|
action = "goto_next";
|
||||||
|
desc = "Next Diagnostic";
|
||||||
|
};
|
||||||
|
"[d" = {
|
||||||
|
action = "goto_prev";
|
||||||
|
desc = "Previous Diagnostic";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
extraConfigLua = ''
|
||||||
|
local _border = "rounded"
|
||||||
|
|
||||||
|
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(
|
||||||
|
vim.lsp.handlers.hover, {
|
||||||
|
border = _border
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(
|
||||||
|
vim.lsp.handlers.signature_help, {
|
||||||
|
border = _border
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
vim.diagnostic.config{
|
||||||
|
float={border=_border}
|
||||||
|
};
|
||||||
|
|
||||||
|
require('lspconfig.ui.windows').default_options = {
|
||||||
|
border = _border
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
|
||||||
|
colorschemes.catppuccin.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
home.stateVersion = "24.11";
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
|
}
|
||||||
Executable
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP action-history
|
||||||
|
|
||||||
|
|
||||||
|
# end of action-history
|
||||||
Executable
+7
@@ -0,0 +1,7 @@
|
|||||||
|
# GIMP colorrc
|
||||||
|
#
|
||||||
|
# This file holds a list of recently used colors.
|
||||||
|
|
||||||
|
(color-history)
|
||||||
|
|
||||||
|
# end of colorrc
|
||||||
Executable
+14
@@ -0,0 +1,14 @@
|
|||||||
|
# GIMP user context
|
||||||
|
|
||||||
|
(tool "gimp-crop-tool")
|
||||||
|
(paint-info "gimp-paintbrush")
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(mybrush "100% Opaque")
|
||||||
|
(pattern "Pine")
|
||||||
|
(gradient "FG to BG (RGB)")
|
||||||
|
(palette "Color History")
|
||||||
|
(font "Sans-serif")
|
||||||
|
(tool-preset "Core Pointer")
|
||||||
|
|
||||||
|
# end of user context
|
||||||
Executable
+40
@@ -0,0 +1,40 @@
|
|||||||
|
# GIMP controllerrc
|
||||||
|
#
|
||||||
|
# This file will be entirely rewritten each time you exit.
|
||||||
|
|
||||||
|
(GimpControllerInfo "Main Mouse Wheel"
|
||||||
|
(icon-name "gimp-controller-wheel")
|
||||||
|
(enabled yes)
|
||||||
|
(debug-events no)
|
||||||
|
(controller "GimpControllerWheel")
|
||||||
|
(mapping
|
||||||
|
(map "scroll-down-shift-primary" "tools-aspect-decrease")
|
||||||
|
(map "scroll-down-shift-primary-alt" "tools-spacing-decrease")
|
||||||
|
(map "scroll-up-shift-alt" "tools-angle-increase")
|
||||||
|
(map "scroll-down-shift-alt" "tools-angle-decrease")
|
||||||
|
(map "scroll-down-primary-alt" "tools-size-decrease")
|
||||||
|
(map "scroll-up-shift-primary" "tools-aspect-increase")
|
||||||
|
(map "scroll-up-shift-primary-alt" "tools-spacing-increase")
|
||||||
|
(map "scroll-down-alt" "tools-opacity-decrease")
|
||||||
|
(map "scroll-up-primary-alt" "tools-size-increase")
|
||||||
|
(map "scroll-up-alt" "tools-opacity-increase")))
|
||||||
|
(GimpControllerInfo "Main Keyboard"
|
||||||
|
(icon-name "gimp-controller-keyboard")
|
||||||
|
(enabled yes)
|
||||||
|
(debug-events no)
|
||||||
|
(controller "GimpControllerKeyboard")
|
||||||
|
(mapping
|
||||||
|
(map "cursor-right-alt" "tools-size-increase")
|
||||||
|
(map "cursor-left-shift" "view-scroll-page-left")
|
||||||
|
(map "cursor-right-shift" "view-scroll-page-right")
|
||||||
|
(map "cursor-up-shift" "view-scroll-page-up")
|
||||||
|
(map "cursor-up-primary" "view-scroll-top-border")
|
||||||
|
(map "cursor-down-primary" "view-scroll-bottom-border")
|
||||||
|
(map "cursor-up-alt" "tools-size-increase-skip")
|
||||||
|
(map "cursor-left-alt" "tools-size-decrease")
|
||||||
|
(map "cursor-down-shift" "view-scroll-page-down")
|
||||||
|
(map "cursor-right-primary" "view-scroll-right-border")
|
||||||
|
(map "cursor-left-primary" "view-scroll-left-border")
|
||||||
|
(map "cursor-down-alt" "tools-size-decrease-skip")))
|
||||||
|
|
||||||
|
# end of controllerrc
|
||||||
Executable
+222
File diff suppressed because one or more lines are too long
Executable
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# recently closed docks
|
||||||
|
|
||||||
|
|
||||||
|
# end of recently closed docks
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
GIMP Gradient
|
||||||
|
Name: Custom
|
||||||
|
1
|
||||||
|
0 0.5 1 0 0 0 1 1 1 1 1 0 0 1 3
|
||||||
Executable
+3
@@ -0,0 +1,3 @@
|
|||||||
|
; gimp GtkAccelMap rc-file -*- scheme -*-
|
||||||
|
;
|
||||||
|
(gtk_accel_path "<Actions>/plug-in/file-print-gtk" "<Primary>p")
|
||||||
Executable
+6
@@ -0,0 +1,6 @@
|
|||||||
|
# GIMP parasiterc
|
||||||
|
#
|
||||||
|
# This file will be entirely rewritten each time you exit.
|
||||||
|
|
||||||
|
|
||||||
|
# end of parasiterc
|
||||||
Executable
+4532
File diff suppressed because it is too large
Load Diff
Executable
+86
@@ -0,0 +1,86 @@
|
|||||||
|
# GIMP sessionrc
|
||||||
|
#
|
||||||
|
# This file takes session-specific info (that is info, you want to keep
|
||||||
|
# between two GIMP sessions). You are not supposed to edit it manually, but
|
||||||
|
# of course you can do. The sessionrc will be entirely rewritten every time
|
||||||
|
# you quit GIMP. If this file isn't found, defaults are used.
|
||||||
|
|
||||||
|
(session-info "toplevel"
|
||||||
|
(factory-entry "gimp-empty-image-window")
|
||||||
|
(position 200 100)
|
||||||
|
(size 640 480))
|
||||||
|
(session-info "toplevel"
|
||||||
|
(factory-entry "gimp-single-image-window")
|
||||||
|
(position 963 29)
|
||||||
|
(size 954 1048)
|
||||||
|
(open-on-exit)
|
||||||
|
(aux-info
|
||||||
|
(left-docks-width "188")
|
||||||
|
(right-docks-width "205")
|
||||||
|
(maximized "no"))
|
||||||
|
(gimp-toolbox
|
||||||
|
(side left)
|
||||||
|
(book
|
||||||
|
(current-page 0)
|
||||||
|
(dockable "gimp-tool-options"
|
||||||
|
(tab-style automatic)
|
||||||
|
(aux-info
|
||||||
|
(show-button-bar "true")))
|
||||||
|
(dockable "gimp-device-status"
|
||||||
|
(tab-style automatic)
|
||||||
|
(aux-info
|
||||||
|
(show-button-bar "true")))
|
||||||
|
(dockable "gimp-undo-history"
|
||||||
|
(tab-style automatic)
|
||||||
|
(aux-info
|
||||||
|
(show-button-bar "true")))
|
||||||
|
(dockable "gimp-image-list"
|
||||||
|
(tab-style automatic)
|
||||||
|
(aux-info
|
||||||
|
(show-button-bar "true")))))
|
||||||
|
(gimp-dock
|
||||||
|
(side right)
|
||||||
|
(book
|
||||||
|
(current-page 0)
|
||||||
|
(dockable "gimp-brush-grid"
|
||||||
|
(tab-style automatic)
|
||||||
|
(aux-info
|
||||||
|
(show-button-bar "true")))
|
||||||
|
(dockable "gimp-pattern-grid"
|
||||||
|
(tab-style automatic)
|
||||||
|
(aux-info
|
||||||
|
(show-button-bar "true")))
|
||||||
|
(dockable "gimp-font-list"
|
||||||
|
(tab-style automatic)
|
||||||
|
(aux-info
|
||||||
|
(show-button-bar "true")))
|
||||||
|
(dockable "gimp-document-list"
|
||||||
|
(tab-style automatic)
|
||||||
|
(aux-info
|
||||||
|
(show-button-bar "true"))))
|
||||||
|
(book
|
||||||
|
(position 336)
|
||||||
|
(current-page 0)
|
||||||
|
(dockable "gimp-layer-list"
|
||||||
|
(tab-style automatic)
|
||||||
|
(preview-size 32)
|
||||||
|
(aux-info
|
||||||
|
(show-button-bar "true")))
|
||||||
|
(dockable "gimp-channel-list"
|
||||||
|
(tab-style automatic)
|
||||||
|
(preview-size 32)
|
||||||
|
(aux-info
|
||||||
|
(show-button-bar "true")))
|
||||||
|
(dockable "gimp-vectors-list"
|
||||||
|
(tab-style automatic)
|
||||||
|
(preview-size 32)
|
||||||
|
(aux-info
|
||||||
|
(show-button-bar "true"))))))
|
||||||
|
|
||||||
|
(hide-docks no)
|
||||||
|
(single-window-mode yes)
|
||||||
|
(show-tabs yes)
|
||||||
|
(tabs-position 0)
|
||||||
|
(last-tip-shown 0)
|
||||||
|
|
||||||
|
# end of sessionrc
|
||||||
Executable
+7869
File diff suppressed because it is too large
Load Diff
Executable
+500
@@ -0,0 +1,500 @@
|
|||||||
|
# GIMP templaterc
|
||||||
|
#
|
||||||
|
# This file will be entirely rewritten each time you exit.
|
||||||
|
|
||||||
|
(GimpTemplate "A0 (300 ppi)"
|
||||||
|
(width 9933)
|
||||||
|
(height 14043)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "A1 (300 ppi)"
|
||||||
|
(width 7016)
|
||||||
|
(height 9933)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "A2 (300 ppi)"
|
||||||
|
(width 4960)
|
||||||
|
(height 7016)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "A3 (300 ppi)"
|
||||||
|
(width 3508)
|
||||||
|
(height 4960)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "A4 (300 ppi)"
|
||||||
|
(width 2480)
|
||||||
|
(height 3508)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "A5 (300 ppi)"
|
||||||
|
(width 1748)
|
||||||
|
(height 2480)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "A6 (300 ppi)"
|
||||||
|
(width 1240)
|
||||||
|
(height 1748)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "A7 (300 ppi)"
|
||||||
|
(width 874)
|
||||||
|
(height 1240)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "B4 (300 ppi)"
|
||||||
|
(width 2953)
|
||||||
|
(height 4169)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "B5 (300 ppi)"
|
||||||
|
(width 2079)
|
||||||
|
(height 2953)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "B5-Japan (300 ppi)"
|
||||||
|
(width 2150)
|
||||||
|
(height 3035)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "US Letter (300 ppi)"
|
||||||
|
(width 2550)
|
||||||
|
(height 3300)
|
||||||
|
(unit inches)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "US Legal (300 ppi)"
|
||||||
|
(width 2550)
|
||||||
|
(height 4200)
|
||||||
|
(unit inches)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "88.9×50.8 US Business Card"
|
||||||
|
(icon-name "gimp-business-card")
|
||||||
|
(width 1050)
|
||||||
|
(height 600)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "85×55 Western Europe Business Card"
|
||||||
|
(icon-name "gimp-business-card")
|
||||||
|
(width 1004)
|
||||||
|
(height 650)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "90×50 Eastern Europe Business Card"
|
||||||
|
(icon-name "gimp-business-card")
|
||||||
|
(width 1063)
|
||||||
|
(height 591)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "90×55 Business Card (AU, IN etc.)"
|
||||||
|
(icon-name "gimp-business-card")
|
||||||
|
(width 1063)
|
||||||
|
(height 650)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "87×49 Vistaprint Business Card"
|
||||||
|
(icon-name "gimp-business-card")
|
||||||
|
(width 1028)
|
||||||
|
(height 579)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Toilet paper (US, 300 ppi)"
|
||||||
|
(icon-name "gimp-toilet-paper")
|
||||||
|
(width 1350)
|
||||||
|
(height 1350)
|
||||||
|
(unit inches)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "CD cover (300 ppi)"
|
||||||
|
(icon-name "media-optical")
|
||||||
|
(width 1429)
|
||||||
|
(height 1417)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 300)
|
||||||
|
(yresolution 300)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Web banner leaderboard 728x90"
|
||||||
|
(icon-name "gimp-web")
|
||||||
|
(width 728)
|
||||||
|
(height 90)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Web banner large rectangle 336×280"
|
||||||
|
(icon-name "gimp-web")
|
||||||
|
(width 336)
|
||||||
|
(height 280)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Web banner medium rectangle 300×250"
|
||||||
|
(icon-name "gimp-web")
|
||||||
|
(width 300)
|
||||||
|
(height 250)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Web banner large mobile 320×100"
|
||||||
|
(icon-name "gimp-web")
|
||||||
|
(width 320)
|
||||||
|
(height 100)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Web banner large skyscraper 300×600"
|
||||||
|
(icon-name "gimp-web")
|
||||||
|
(width 300)
|
||||||
|
(height 600)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "1280×720 (HD 720p)"
|
||||||
|
(icon-name "gimp-video")
|
||||||
|
(width 1280)
|
||||||
|
(height 720)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "1920×1080 (Full HD 1080p)"
|
||||||
|
(icon-name "gimp-video")
|
||||||
|
(width 1920)
|
||||||
|
(height 1080)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "3840x2160 (4K UHD)"
|
||||||
|
(icon-name "gimp-video")
|
||||||
|
(width 3840)
|
||||||
|
(height 2160)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "4096×2160 (Digital Cinema Initiatives 4K)"
|
||||||
|
(icon-name "gimp-video")
|
||||||
|
(width 4096)
|
||||||
|
(height 2160)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "1366×768 HD"
|
||||||
|
(icon-name "gimp-display")
|
||||||
|
(width 1366)
|
||||||
|
(height 768)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "1920×1200 WUXGA"
|
||||||
|
(icon-name "gimp-display")
|
||||||
|
(width 1920)
|
||||||
|
(height 1200)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "2560x1600 WQXGA"
|
||||||
|
(icon-name "gimp-display")
|
||||||
|
(width 2560)
|
||||||
|
(height 1600)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "3840×2160 4K UHD"
|
||||||
|
(icon-name "gimp-display")
|
||||||
|
(width 3840)
|
||||||
|
(height 2160)
|
||||||
|
(unit pixels)
|
||||||
|
(xresolution 72)
|
||||||
|
(yresolution 72)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Apple iPhone 6/7"
|
||||||
|
(icon-name "gimp-smartphone")
|
||||||
|
(width 750)
|
||||||
|
(height 1334)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 326)
|
||||||
|
(yresolution 326)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Apple iPhone 5"
|
||||||
|
(icon-name "gimp-smartphone")
|
||||||
|
(width 640)
|
||||||
|
(height 1136)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 326)
|
||||||
|
(yresolution 326)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Apple iPad 3&4, Air"
|
||||||
|
(icon-name "gimp-smartphone")
|
||||||
|
(width 2048)
|
||||||
|
(height 2732)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 264)
|
||||||
|
(yresolution 264)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Samsung Galaxy S6"
|
||||||
|
(icon-name "gimp-smartphone")
|
||||||
|
(width 1440)
|
||||||
|
(height 2560)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 577)
|
||||||
|
(yresolution 577)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Samsung Galaxy S5"
|
||||||
|
(icon-name "gimp-smartphone")
|
||||||
|
(width 1080)
|
||||||
|
(height 1920)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 360)
|
||||||
|
(yresolution 360)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
(GimpTemplate "Samsung Galaxy Tab 2&3 10,1 inch"
|
||||||
|
(icon-name "gimp-smartphone")
|
||||||
|
(width 800)
|
||||||
|
(height 1280)
|
||||||
|
(unit millimeters)
|
||||||
|
(xresolution 149)
|
||||||
|
(yresolution 149)
|
||||||
|
(resolution-unit inches)
|
||||||
|
(image-type rgb)
|
||||||
|
(precision u8-gamma)
|
||||||
|
(color-managed yes)
|
||||||
|
(color-profile NULL)
|
||||||
|
(fill-type background))
|
||||||
|
|
||||||
|
# end of templaterc
|
||||||
Executable
+17
@@ -0,0 +1,17 @@
|
|||||||
|
# GIMP themerc
|
||||||
|
#
|
||||||
|
# This file is written on GIMP startup and on every theme change.
|
||||||
|
# It is NOT supposed to be edited manually. Edit your personal
|
||||||
|
# gtkrc file instead (/home/roy/.config/GIMP/2.10/gtkrc).
|
||||||
|
|
||||||
|
style "gimp-spin-scale-style"
|
||||||
|
{
|
||||||
|
GimpSpinScale::compact = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
class "GimpSpinScale" style "gimp-spin-scale-style"
|
||||||
|
|
||||||
|
include "/nix/store/9q6fwr0i6c9j5cz0j5gjf9vf0ip912x3-gimp-2.10.38/share/gimp/2.0/themes/Dark/gtkrc"
|
||||||
|
include "/nix/store/9q6fwr0i6c9j5cz0j5gjf9vf0ip912x3-gimp-2.10.38/etc/gimp/2.0/gtkrc"
|
||||||
|
|
||||||
|
# end of themerc
|
||||||
+10
@@ -0,0 +1,10 @@
|
|||||||
|
# GIMP gimp-airbrush-tool options
|
||||||
|
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(gradient "FG to BG (RGB)")
|
||||||
|
(palette "Color History")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-airbrush-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-align-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-align-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-brightness-contrast-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-brightness-contrast-tool options
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# GIMP gimp-bucket-fill-tool options
|
||||||
|
|
||||||
|
(pattern "Pine")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-bucket-fill-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-by-color-select-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-by-color-select-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-cage-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-cage-tool options
|
||||||
+10
@@ -0,0 +1,10 @@
|
|||||||
|
# GIMP gimp-clone-tool options
|
||||||
|
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(pattern "Pine")
|
||||||
|
(palette "Color History")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-clone-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-color-picker-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-color-picker-tool options
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# GIMP gimp-convolve-tool options
|
||||||
|
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(palette "Color History")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-convolve-tool options
|
||||||
+5
@@ -0,0 +1,5 @@
|
|||||||
|
# GIMP gimp-crop-tool options
|
||||||
|
|
||||||
|
(pattern "Pine")
|
||||||
|
|
||||||
|
# end of gimp-crop-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-curves-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-curves-tool options
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# GIMP gimp-dodge-burn-tool options
|
||||||
|
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(palette "Color History")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-dodge-burn-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-ellipse-select-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-ellipse-select-tool options
|
||||||
+9
@@ -0,0 +1,9 @@
|
|||||||
|
# GIMP gimp-eraser-tool options
|
||||||
|
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(palette "Color History")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-eraser-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-flip-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-flip-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-foreground-select-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-foreground-select-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-free-select-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-free-select-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-fuzzy-select-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-fuzzy-select-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-gegl-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-gegl-tool options
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# GIMP gimp-gradient-tool options
|
||||||
|
|
||||||
|
(gradient "FG to BG (RGB)")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-gradient-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-handle-transform-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-handle-transform-tool options
|
||||||
+9
@@ -0,0 +1,9 @@
|
|||||||
|
# GIMP gimp-heal-tool options
|
||||||
|
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(palette "Color History")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-heal-tool options
|
||||||
+6
@@ -0,0 +1,6 @@
|
|||||||
|
# GIMP gimp-ink-tool options
|
||||||
|
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-ink-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-iscissors-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-iscissors-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-levels-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-levels-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-measure-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-measure-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-move-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-move-tool options
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# GIMP gimp-mypaint-brush-tool options
|
||||||
|
|
||||||
|
(mybrush "100% Opaque")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
(radius 3.0099999904632568)
|
||||||
|
(hardness 0.94999998807907104)
|
||||||
|
|
||||||
|
# end of gimp-mypaint-brush-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-offset-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-offset-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-operation-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-operation-tool options
|
||||||
+10
@@ -0,0 +1,10 @@
|
|||||||
|
# GIMP gimp-paintbrush-tool options
|
||||||
|
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(gradient "FG to BG (RGB)")
|
||||||
|
(palette "Color History")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-paintbrush-tool options
|
||||||
+10
@@ -0,0 +1,10 @@
|
|||||||
|
# GIMP gimp-pencil-tool options
|
||||||
|
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(gradient "FG to BG (RGB)")
|
||||||
|
(palette "Color History")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-pencil-tool options
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
# GIMP gimp-perspective-clone-tool options
|
||||||
|
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(pattern "Pine")
|
||||||
|
(palette "Color History")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-perspective-clone-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-perspective-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-perspective-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-rect-select-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-rect-select-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-rotate-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-rotate-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-scale-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-scale-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-shear-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-shear-tool options
|
||||||
+10
@@ -0,0 +1,10 @@
|
|||||||
|
# GIMP gimp-smudge-tool options
|
||||||
|
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(gradient "FG to BG (RGB)")
|
||||||
|
(palette "Color History")
|
||||||
|
(brush-size 51)
|
||||||
|
(brush-hardness 0.5)
|
||||||
|
|
||||||
|
# end of gimp-smudge-tool options
|
||||||
+6
@@ -0,0 +1,6 @@
|
|||||||
|
# GIMP gimp-text-tool options
|
||||||
|
|
||||||
|
(palette "Color History")
|
||||||
|
(font "Sans-serif")
|
||||||
|
|
||||||
|
# end of gimp-text-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-threshold-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-threshold-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-transform-3d-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-transform-3d-tool options
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-unified-transform-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-unified-transform-tool options
|
||||||
+9
@@ -0,0 +1,9 @@
|
|||||||
|
# GIMP gimp-vector-tool options
|
||||||
|
|
||||||
|
(brush "2. Hardness 050")
|
||||||
|
(dynamics "Dynamics Off")
|
||||||
|
(pattern "Pine")
|
||||||
|
(gradient "FG to BG (RGB)")
|
||||||
|
(palette "Color History")
|
||||||
|
|
||||||
|
# end of gimp-vector-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-warp-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-warp-tool options
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
# GIMP gimp-zoom-tool options
|
||||||
|
|
||||||
|
|
||||||
|
# end of gimp-zoom-tool options
|
||||||
Executable
+185
@@ -0,0 +1,185 @@
|
|||||||
|
# GIMP toolrc
|
||||||
|
|
||||||
|
(file-version 1)
|
||||||
|
|
||||||
|
(GimpToolGroup "tool group"
|
||||||
|
(visible yes)
|
||||||
|
(active-tool "gimp-move-tool")
|
||||||
|
(children
|
||||||
|
(GimpToolInfo "gimp-move-tool"
|
||||||
|
(icon-name "gimp-tool-move")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-align-tool"
|
||||||
|
(icon-name "gimp-tool-align")
|
||||||
|
(visible yes))))
|
||||||
|
(GimpToolGroup "tool group"
|
||||||
|
(visible yes)
|
||||||
|
(active-tool "gimp-rect-select-tool")
|
||||||
|
(children
|
||||||
|
(GimpToolInfo "gimp-rect-select-tool"
|
||||||
|
(icon-name "gimp-tool-rect-select")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-ellipse-select-tool"
|
||||||
|
(icon-name "gimp-tool-ellipse-select")
|
||||||
|
(visible yes))))
|
||||||
|
(GimpToolGroup "tool group"
|
||||||
|
(visible yes)
|
||||||
|
(active-tool "gimp-free-select-tool")
|
||||||
|
(children
|
||||||
|
(GimpToolInfo "gimp-free-select-tool"
|
||||||
|
(icon-name "gimp-tool-free-select")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-iscissors-tool"
|
||||||
|
(icon-name "gimp-tool-iscissors")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-foreground-select-tool"
|
||||||
|
(icon-name "gimp-tool-foreground-select")
|
||||||
|
(visible yes))))
|
||||||
|
(GimpToolGroup "tool group"
|
||||||
|
(visible yes)
|
||||||
|
(active-tool "gimp-fuzzy-select-tool")
|
||||||
|
(children
|
||||||
|
(GimpToolInfo "gimp-fuzzy-select-tool"
|
||||||
|
(icon-name "gimp-tool-fuzzy-select")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-by-color-select-tool"
|
||||||
|
(icon-name "gimp-tool-by-color-select")
|
||||||
|
(visible yes))))
|
||||||
|
(GimpToolInfo "gimp-crop-tool"
|
||||||
|
(icon-name "gimp-tool-crop")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolGroup "tool group"
|
||||||
|
(visible yes)
|
||||||
|
(active-tool "gimp-unified-transform-tool")
|
||||||
|
(children
|
||||||
|
(GimpToolInfo "gimp-unified-transform-tool"
|
||||||
|
(icon-name "gimp-tool-unified-transform")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-rotate-tool"
|
||||||
|
(icon-name "gimp-tool-rotate")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-scale-tool"
|
||||||
|
(icon-name "gimp-tool-scale")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-shear-tool"
|
||||||
|
(icon-name "gimp-tool-shear")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-flip-tool"
|
||||||
|
(icon-name "gimp-tool-flip")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-perspective-tool"
|
||||||
|
(icon-name "gimp-tool-perspective")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-transform-3d-tool"
|
||||||
|
(icon-name "gimp-tool-transform-3d")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-handle-transform-tool"
|
||||||
|
(icon-name "gimp-tool-handle-transform")
|
||||||
|
(visible yes))))
|
||||||
|
(GimpToolGroup "tool group"
|
||||||
|
(visible yes)
|
||||||
|
(active-tool "gimp-warp-tool")
|
||||||
|
(children
|
||||||
|
(GimpToolInfo "gimp-warp-tool"
|
||||||
|
(icon-name "gimp-tool-warp")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-cage-tool"
|
||||||
|
(icon-name "gimp-tool-cage")
|
||||||
|
(visible yes))))
|
||||||
|
(GimpToolGroup "tool group"
|
||||||
|
(visible yes)
|
||||||
|
(active-tool "gimp-bucket-fill-tool")
|
||||||
|
(children
|
||||||
|
(GimpToolInfo "gimp-bucket-fill-tool"
|
||||||
|
(icon-name "gimp-tool-bucket-fill")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-gradient-tool"
|
||||||
|
(icon-name "gimp-tool-gradient")
|
||||||
|
(visible yes))))
|
||||||
|
(GimpToolGroup "tool group"
|
||||||
|
(visible yes)
|
||||||
|
(active-tool "gimp-paintbrush-tool")
|
||||||
|
(children
|
||||||
|
(GimpToolInfo "gimp-paintbrush-tool"
|
||||||
|
(icon-name "gimp-tool-paintbrush")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-pencil-tool"
|
||||||
|
(icon-name "gimp-tool-pencil")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-airbrush-tool"
|
||||||
|
(icon-name "gimp-tool-airbrush")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-ink-tool"
|
||||||
|
(icon-name "gimp-tool-ink")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-mypaint-brush-tool"
|
||||||
|
(icon-name "gimp-tool-mypaint-brush")
|
||||||
|
(visible yes))))
|
||||||
|
(GimpToolInfo "gimp-eraser-tool"
|
||||||
|
(icon-name "gimp-tool-eraser")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolGroup "tool group"
|
||||||
|
(visible yes)
|
||||||
|
(active-tool "gimp-clone-tool")
|
||||||
|
(children
|
||||||
|
(GimpToolInfo "gimp-clone-tool"
|
||||||
|
(icon-name "gimp-tool-clone")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-perspective-clone-tool"
|
||||||
|
(icon-name "gimp-tool-perspective-clone")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-heal-tool"
|
||||||
|
(icon-name "gimp-tool-heal")
|
||||||
|
(visible yes))))
|
||||||
|
(GimpToolGroup "tool group"
|
||||||
|
(visible yes)
|
||||||
|
(active-tool "gimp-smudge-tool")
|
||||||
|
(children
|
||||||
|
(GimpToolInfo "gimp-smudge-tool"
|
||||||
|
(icon-name "gimp-tool-smudge")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-convolve-tool"
|
||||||
|
(icon-name "gimp-tool-blur")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-dodge-burn-tool"
|
||||||
|
(icon-name "gimp-tool-dodge")
|
||||||
|
(visible yes))))
|
||||||
|
(GimpToolInfo "gimp-vector-tool"
|
||||||
|
(icon-name "gimp-tool-path")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-text-tool"
|
||||||
|
(icon-name "gimp-tool-text")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolGroup "tool group"
|
||||||
|
(visible yes)
|
||||||
|
(active-tool "gimp-color-picker-tool")
|
||||||
|
(children
|
||||||
|
(GimpToolInfo "gimp-color-picker-tool"
|
||||||
|
(icon-name "gimp-tool-color-picker")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-measure-tool"
|
||||||
|
(icon-name "gimp-tool-measure")
|
||||||
|
(visible yes))))
|
||||||
|
(GimpToolInfo "gimp-zoom-tool"
|
||||||
|
(icon-name "gimp-tool-zoom")
|
||||||
|
(visible yes))
|
||||||
|
(GimpToolInfo "gimp-brightness-contrast-tool"
|
||||||
|
(icon-name "gimp-tool-brightness-contrast")
|
||||||
|
(visible no))
|
||||||
|
(GimpToolInfo "gimp-threshold-tool"
|
||||||
|
(icon-name "gimp-tool-threshold")
|
||||||
|
(visible no))
|
||||||
|
(GimpToolInfo "gimp-levels-tool"
|
||||||
|
(icon-name "gimp-tool-levels")
|
||||||
|
(visible no))
|
||||||
|
(GimpToolInfo "gimp-curves-tool"
|
||||||
|
(icon-name "gimp-tool-curves")
|
||||||
|
(visible no))
|
||||||
|
(GimpToolInfo "gimp-offset-tool"
|
||||||
|
(icon-name "gimp-tool-offset")
|
||||||
|
(visible no))
|
||||||
|
(GimpToolInfo "gimp-gegl-tool"
|
||||||
|
(icon-name "gimp-gegl")
|
||||||
|
(visible no))
|
||||||
|
|
||||||
|
# end of toolrc
|
||||||
Executable
+51
@@ -0,0 +1,51 @@
|
|||||||
|
# GIMP units
|
||||||
|
#
|
||||||
|
# This file contains the user unit database. You can edit this list with the
|
||||||
|
# unit editor. You are not supposed to edit it manually, but of course you
|
||||||
|
# can do.
|
||||||
|
# This file will be entirely rewritten each time you exit.
|
||||||
|
|
||||||
|
(unit-info "centimeters"
|
||||||
|
(factor 2.54)
|
||||||
|
(digits 2)
|
||||||
|
(symbol "cm")
|
||||||
|
(abbreviation "cm")
|
||||||
|
(singular "centimeter")
|
||||||
|
(plural "centimeters"))
|
||||||
|
(unit-info "meters"
|
||||||
|
(factor 0.025399999999999999)
|
||||||
|
(digits 4)
|
||||||
|
(symbol "m")
|
||||||
|
(abbreviation "m")
|
||||||
|
(singular "meter")
|
||||||
|
(plural "meters"))
|
||||||
|
(unit-info "feet"
|
||||||
|
(factor 0.083333000000000004)
|
||||||
|
(digits 4)
|
||||||
|
(symbol "'")
|
||||||
|
(abbreviation "ft")
|
||||||
|
(singular "foot")
|
||||||
|
(plural "feet"))
|
||||||
|
(unit-info "yards"
|
||||||
|
(factor 0.027778000000000001)
|
||||||
|
(digits 4)
|
||||||
|
(symbol "yd")
|
||||||
|
(abbreviation "yd")
|
||||||
|
(singular "yard")
|
||||||
|
(plural "yards"))
|
||||||
|
(unit-info "typogr. points"
|
||||||
|
(factor 72.269999999999996)
|
||||||
|
(digits 0)
|
||||||
|
(symbol "tpt")
|
||||||
|
(abbreviation "tpt")
|
||||||
|
(singular "typogr. point")
|
||||||
|
(plural "typogr. points"))
|
||||||
|
(unit-info "typogr. picas"
|
||||||
|
(factor 6.0225)
|
||||||
|
(digits 1)
|
||||||
|
(symbol "tpc")
|
||||||
|
(abbreviation "tpc")
|
||||||
|
(singular "typogr. pica")
|
||||||
|
(plural "typogr. picas"))
|
||||||
|
|
||||||
|
# end of units
|
||||||
Executable
BIN
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
/nix/store/gd3myp5vxnqm935nm4hgxhn0wyrqln6r-home-manager-files/.config/environment.d/10-home-manager.conf
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
/nix/store/gd3myp5vxnqm935nm4hgxhn0wyrqln6r-home-manager-files/.config/fontconfig/conf.d/10-hm-fonts.conf
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
/nix/store/gd3myp5vxnqm935nm4hgxhn0wyrqln6r-home-manager-files/.config/fontconfig/conf.d/52-hm-default-fonts.conf
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
/nix/store/gd3myp5vxnqm935nm4hgxhn0wyrqln6r-home-manager-files/.config/git/config
|
||||||
Executable
+11
@@ -0,0 +1,11 @@
|
|||||||
|
[Filechooser Settings]
|
||||||
|
LocationMode=path-bar
|
||||||
|
ShowHidden=false
|
||||||
|
ShowSizeColumn=true
|
||||||
|
GeometryX=0
|
||||||
|
GeometryY=10
|
||||||
|
GeometryWidth=494
|
||||||
|
GeometryHeight=518
|
||||||
|
SortColumn=name
|
||||||
|
SortOrder=ascending
|
||||||
|
StartupMode=recent
|
||||||
Executable
+16
@@ -0,0 +1,16 @@
|
|||||||
|
[General]
|
||||||
|
LastUsedVersion=210800
|
||||||
|
|
||||||
|
[MainWindow]
|
||||||
|
MenuBar=Disabled
|
||||||
|
ToolBarsMovable=Disabled
|
||||||
|
|
||||||
|
[Print]
|
||||||
|
PrintHeight=19.42
|
||||||
|
|
||||||
|
[Recent Files]
|
||||||
|
File1[$e]=$HOME/Downloads/image0.png
|
||||||
|
Name1[$e]=image0.png
|
||||||
|
|
||||||
|
[SideBar]
|
||||||
|
InformationSplitterSizes=206,247
|
||||||
Executable
+295
@@ -0,0 +1,295 @@
|
|||||||
|
|
||||||
|
# #######################################################################################
|
||||||
|
# AUTOGENERATED HYPR CONFIG.
|
||||||
|
# PLEASE USE THE CONFIG PROVIDED IN THE GIT REPO /examples/hypr.conf AND EDIT IT,
|
||||||
|
# OR EDIT THIS ONE ACCORDING TO THE WIKI INSTRUCTIONS.
|
||||||
|
# #######################################################################################
|
||||||
|
|
||||||
|
# This is an example Hyprland config file.
|
||||||
|
# Refer to the wiki for more information.
|
||||||
|
# https://wiki.hyprland.org/Configuring/
|
||||||
|
|
||||||
|
# Please note not all available settings / options are set here.
|
||||||
|
# For a full list, see the wiki
|
||||||
|
|
||||||
|
# You can split this configuration into multiple files
|
||||||
|
# Create your files separately and then link them to this file like this:
|
||||||
|
# source = ~/.config/hypr/myColors.conf
|
||||||
|
|
||||||
|
|
||||||
|
################
|
||||||
|
### MONITORS ###
|
||||||
|
################
|
||||||
|
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||||
|
monitor=,preferred,auto,1
|
||||||
|
|
||||||
|
|
||||||
|
###################
|
||||||
|
### MY PROGRAMS ###
|
||||||
|
###################
|
||||||
|
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Keywords/
|
||||||
|
|
||||||
|
# Set programs that you use
|
||||||
|
$terminal = kitty
|
||||||
|
$fileManager = dolphin
|
||||||
|
$menu = wofi --show drun
|
||||||
|
|
||||||
|
|
||||||
|
#################
|
||||||
|
### AUTOSTART ###
|
||||||
|
#################
|
||||||
|
|
||||||
|
# Autostart necessary processes (like notifications daemons, status bars, etc.)
|
||||||
|
# Or execute your favorite apps at launch like this:
|
||||||
|
|
||||||
|
# exec-once = $terminal
|
||||||
|
# exec-once = nm-applet &
|
||||||
|
exec-once = waybar # & hyprpaper & firefox
|
||||||
|
|
||||||
|
#############################
|
||||||
|
### ENVIRONMENT VARIABLES ###
|
||||||
|
#############################
|
||||||
|
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Environment-variables/
|
||||||
|
|
||||||
|
env = HYPRCURSOR_THEME,rose-pine-hyprcursor
|
||||||
|
env = HYPRCURSOR_SIZE,18
|
||||||
|
|
||||||
|
|
||||||
|
#####################
|
||||||
|
### LOOK AND FEEL ###
|
||||||
|
#####################
|
||||||
|
|
||||||
|
# Refer to https://wiki.hyprland.org/Configuring/Variables/
|
||||||
|
|
||||||
|
# https://wiki.hyprland.org/Configuring/Variables/#general
|
||||||
|
general {
|
||||||
|
gaps_in = 2
|
||||||
|
gaps_out = 2
|
||||||
|
|
||||||
|
border_size = 1
|
||||||
|
|
||||||
|
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||||
|
col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
|
||||||
|
col.inactive_border = rgba(595959aa)
|
||||||
|
|
||||||
|
# Set to true enable resizing windows by clicking and dragging on borders and gaps
|
||||||
|
resize_on_border = false
|
||||||
|
|
||||||
|
# Please see https://wiki.hyprland.org/Configuring/Tearing/ before you turn this on
|
||||||
|
allow_tearing = false
|
||||||
|
|
||||||
|
layout = dwindle
|
||||||
|
}
|
||||||
|
|
||||||
|
# https://wiki.hyprland.org/Configuring/Variables/#decoration
|
||||||
|
decoration {
|
||||||
|
rounding = 2
|
||||||
|
|
||||||
|
# Change transparency of focused and unfocused windows
|
||||||
|
active_opacity = 1.0
|
||||||
|
inactive_opacity = 1.0
|
||||||
|
|
||||||
|
shadow {
|
||||||
|
enabled = true
|
||||||
|
range = 4
|
||||||
|
render_power = 3
|
||||||
|
color = rgba(1a1a1aee)
|
||||||
|
}
|
||||||
|
|
||||||
|
# https://wiki.hyprland.org/Configuring/Variables/#blur
|
||||||
|
blur {
|
||||||
|
enabled = true
|
||||||
|
size = 3
|
||||||
|
passes = 1
|
||||||
|
|
||||||
|
vibrancy = 0.1696
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# https://wiki.hyprland.org/Configuring/Variables/#animations
|
||||||
|
animations {
|
||||||
|
enabled = yes, please :)
|
||||||
|
|
||||||
|
# Default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
|
||||||
|
|
||||||
|
bezier = easeOutQuint,0.23,1,0.32,1
|
||||||
|
bezier = easeInOutCubic,0.65,0.05,0.36,1
|
||||||
|
bezier = linear,0,0,1,1
|
||||||
|
bezier = almostLinear,0.5,0.5,0.75,1.0
|
||||||
|
bezier = quick,0.15,0,0.1,1
|
||||||
|
|
||||||
|
animation = global, 1, 10, default
|
||||||
|
animation = border, 1, 5.39, easeOutQuint
|
||||||
|
animation = windows, 1, 4.79, easeOutQuint
|
||||||
|
animation = windowsIn, 1, 4.1, easeOutQuint, popin 87%
|
||||||
|
animation = windowsOut, 1, 1.49, linear, popin 87%
|
||||||
|
animation = fadeIn, 1, 1.73, almostLinear
|
||||||
|
animation = fadeOut, 1, 1.46, almostLinear
|
||||||
|
animation = fade, 1, 3.03, quick
|
||||||
|
animation = layers, 1, 3.81, easeOutQuint
|
||||||
|
animation = layersIn, 1, 4, easeOutQuint, fade
|
||||||
|
animation = layersOut, 1, 1.5, linear, fade
|
||||||
|
animation = fadeLayersIn, 1, 1.79, almostLinear
|
||||||
|
animation = fadeLayersOut, 1, 1.39, almostLinear
|
||||||
|
animation = workspaces, 1, 1.94, almostLinear, fade
|
||||||
|
animation = workspacesIn, 1, 1.21, almostLinear, fade
|
||||||
|
animation = workspacesOut, 1, 1.94, almostLinear, fade
|
||||||
|
}
|
||||||
|
|
||||||
|
# Ref https://wiki.hyprland.org/Configuring/Workspace-Rules/
|
||||||
|
# "Smart gaps" / "No gaps when only"
|
||||||
|
# uncomment all if you wish to use that.
|
||||||
|
# workspace = w[tv1], gapsout:0, gapsin:0
|
||||||
|
# workspace = f[1], gapsout:0, gapsin:0
|
||||||
|
# windowrulev2 = bordersize 0, floating:0, onworkspace:w[tv1]
|
||||||
|
# windowrulev2 = rounding 0, floating:0, onworkspace:w[tv1]
|
||||||
|
# windowrulev2 = bordersize 0, floating:0, onworkspace:f[1]
|
||||||
|
# windowrulev2 = rounding 0, floating:0, onworkspace:f[1]
|
||||||
|
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
|
||||||
|
dwindle {
|
||||||
|
pseudotile = true # Master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
|
||||||
|
preserve_split = true # You probably want this
|
||||||
|
}
|
||||||
|
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
|
||||||
|
master {
|
||||||
|
new_status = master
|
||||||
|
}
|
||||||
|
|
||||||
|
# https://wiki.hyprland.org/Configuring/Variables/#misc
|
||||||
|
misc {
|
||||||
|
force_default_wallpaper = 0 # Set to 0 or 1 to disable the anime mascot wallpapers
|
||||||
|
disable_hyprland_logo = true # If true disables the random hyprland logo / anime girl background. :(
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#############
|
||||||
|
### INPUT ###
|
||||||
|
#############
|
||||||
|
|
||||||
|
# https://wiki.hyprland.org/Configuring/Variables/#input
|
||||||
|
input {
|
||||||
|
kb_layout = us
|
||||||
|
kb_variant =
|
||||||
|
kb_model =
|
||||||
|
kb_options =
|
||||||
|
kb_rules =
|
||||||
|
|
||||||
|
follow_mouse = 1
|
||||||
|
|
||||||
|
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||||
|
|
||||||
|
touchpad {
|
||||||
|
natural_scroll = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
||||||
|
gestures {
|
||||||
|
workspace_swipe = false
|
||||||
|
}
|
||||||
|
|
||||||
|
# Example per-device config
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Keywords/#per-device-input-configs for more
|
||||||
|
device {
|
||||||
|
name = epic-mouse-v1
|
||||||
|
sensitivity = -0.5
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
###################
|
||||||
|
### KEYBINDINGS ###
|
||||||
|
###################
|
||||||
|
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Keywords/
|
||||||
|
$mainMod = SUPER # Sets "Windows" key as main modifier
|
||||||
|
|
||||||
|
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||||
|
bind = $mainMod, Return, exec, $terminal
|
||||||
|
bind = $mainMod, Q, killactive,
|
||||||
|
bind = $mainMod, M, exit,
|
||||||
|
bind = $mainMod, E, exec, $fileManager
|
||||||
|
bind = $mainMod, V, togglefloating,
|
||||||
|
bind = $mainMod, R, exec, $menu
|
||||||
|
bind = $mainMod, P, pseudo, # dwindle
|
||||||
|
bind = $mainMod, J, togglesplit, # dwindle
|
||||||
|
bind = $mainMod SHIFT, Return, exec, firefox
|
||||||
|
|
||||||
|
# Move focus with mainMod + arrow keys
|
||||||
|
bind = $mainMod, left, movefocus, l
|
||||||
|
bind = $mainMod, right, movefocus, r
|
||||||
|
bind = $mainMod, up, movefocus, u
|
||||||
|
bind = $mainMod, down, movefocus, d
|
||||||
|
|
||||||
|
# Switch workspaces with mainMod + [0-9]
|
||||||
|
bind = $mainMod, 1, workspace, 1
|
||||||
|
bind = $mainMod, 2, workspace, 2
|
||||||
|
bind = $mainMod, 3, workspace, 3
|
||||||
|
bind = $mainMod, 4, workspace, 4
|
||||||
|
bind = $mainMod, 5, workspace, 5
|
||||||
|
bind = $mainMod, 6, workspace, 6
|
||||||
|
bind = $mainMod, 7, workspace, 7
|
||||||
|
bind = $mainMod, 8, workspace, 8
|
||||||
|
bind = $mainMod, 9, workspace, 9
|
||||||
|
bind = $mainMod, 0, workspace, 10
|
||||||
|
|
||||||
|
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
||||||
|
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
||||||
|
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
||||||
|
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
||||||
|
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
||||||
|
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
||||||
|
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
||||||
|
bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
||||||
|
bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
||||||
|
bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
||||||
|
bind = $mainMod SHIFT, 0, movetoworkspace, 10
|
||||||
|
|
||||||
|
# Example special workspace (scratchpad)
|
||||||
|
bind = $mainMod, S, togglespecialworkspace, magic
|
||||||
|
bind = $mainMod SHIFT, S, movetoworkspace, special:magic
|
||||||
|
|
||||||
|
# Scroll through existing workspaces with mainMod + scroll
|
||||||
|
bind = $mainMod, mouse_down, workspace, e+1
|
||||||
|
bind = $mainMod, mouse_up, workspace, e-1
|
||||||
|
|
||||||
|
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||||
|
bindm = $mainMod, mouse:272, movewindow
|
||||||
|
bindm = $mainMod, mouse:273, resizewindow
|
||||||
|
|
||||||
|
# Laptop multimedia keys for volume and LCD brightness
|
||||||
|
bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
|
||||||
|
bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
|
||||||
|
bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
||||||
|
bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle
|
||||||
|
bindel = ,XF86MonBrightnessUp, exec, brightnessctl s 10%+
|
||||||
|
bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 10%-
|
||||||
|
|
||||||
|
# Requires playerctl
|
||||||
|
bindl = , XF86AudioNext, exec, playerctl next
|
||||||
|
bindl = , XF86AudioPause, exec, playerctl play-pause
|
||||||
|
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
||||||
|
bindl = , XF86AudioPrev, exec, playerctl previous
|
||||||
|
|
||||||
|
##############################
|
||||||
|
### WINDOWS AND WORKSPACES ###
|
||||||
|
##############################
|
||||||
|
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
||||||
|
# See https://wiki.hyprland.org/Configuring/Workspace-Rules/ for workspace rules
|
||||||
|
|
||||||
|
# Example windowrule v1
|
||||||
|
# windowrule = float, ^(kitty)$
|
||||||
|
|
||||||
|
# Example windowrule v2
|
||||||
|
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
|
||||||
|
|
||||||
|
# Ignore maximize requests from apps. You'll probably like this.
|
||||||
|
windowrulev2 = suppressevent maximize, class:.*
|
||||||
|
|
||||||
|
# Fix some dragging issues with XWayland
|
||||||
|
windowrulev2 = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
/nix/store/gd3myp5vxnqm935nm4hgxhn0wyrqln6r-home-manager-files/.config/nvim/init.lua
|
||||||
Executable
BIN
Binary file not shown.
Executable
+65
@@ -0,0 +1,65 @@
|
|||||||
|
{
|
||||||
|
"layer": "top",
|
||||||
|
"position": "top",
|
||||||
|
"height": 26,
|
||||||
|
"spacing": 3,
|
||||||
|
|
||||||
|
"modules-left": ["hyprland/workspaces"],
|
||||||
|
"modules-center": ["clock"],
|
||||||
|
"modules-right": ["wireplumber", "group/bat", "group/net"],
|
||||||
|
|
||||||
|
"group/bat": {
|
||||||
|
"orientation": "horizontal",
|
||||||
|
"modules": ["battery"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"group/net": {
|
||||||
|
"orientation": "horizontal",
|
||||||
|
"modules": ["network", "bluetooth"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"hyprland/workspaces": {
|
||||||
|
"format": "{name}",
|
||||||
|
"sort-by-number": true,
|
||||||
|
"persistent-workspaces": {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"clock": {
|
||||||
|
"format": "{:%d.%m.%Y | %H:%M:%S}",
|
||||||
|
"interval": 1
|
||||||
|
},
|
||||||
|
|
||||||
|
"wireplumber": {
|
||||||
|
"format": "\udb81\udd7e {volume}%",
|
||||||
|
"max-volume": 100,
|
||||||
|
"scroll-step": 5
|
||||||
|
},
|
||||||
|
|
||||||
|
"battery": {
|
||||||
|
"bat": "BAT0",
|
||||||
|
"interval": 60,
|
||||||
|
"format": "{icon} {capacity}%",
|
||||||
|
"format-icons": ["\uf244", "\uf243", "\uf242", "\uf241", "\uf240"],
|
||||||
|
},
|
||||||
|
|
||||||
|
"network": {
|
||||||
|
"format": "",
|
||||||
|
"format-ethernet": "\udb83\udc9d ",
|
||||||
|
"format-wifi": "{icon} ",
|
||||||
|
"format-disconnected": "\udb83\udc9c ",
|
||||||
|
"format-icons": ["\udb82\udd2f", "\udb82\udd1f", "\udb82\udd22", "\udb82\udd25", "\udb82\udd28"],
|
||||||
|
"tooltip-format-wifi": "{essid} ({signalStrength}%)",
|
||||||
|
"tooltip-format-ethernet": "{ifname}",
|
||||||
|
"tooltip-format-disconnected": "Disconnected",
|
||||||
|
},
|
||||||
|
|
||||||
|
"bluetooth": {
|
||||||
|
"format": "\udb80\udcaf",
|
||||||
|
"format-disabled": "\udb80\udcb2",
|
||||||
|
"format-connected": "\udb80\udcb1",
|
||||||
|
"tooltip-format": "{controller_alias}\t{controller_address}",
|
||||||
|
"tooltip-format-connected": "{controller_alias}\t{controller_address}\n\n{device_enumerate}",
|
||||||
|
"tooltip-format-enumerate-connected": "{device_alias}\t{device_address}"
|
||||||
|
},
|
||||||
|
}
|
||||||
Executable
+43
@@ -0,0 +1,43 @@
|
|||||||
|
@define-color foreground #eff0f1;
|
||||||
|
@define-color foreground-inactive #7f8c8d;
|
||||||
|
@define-color background #232629;
|
||||||
|
@define-color background-alt #31363b;
|
||||||
|
|
||||||
|
* {
|
||||||
|
font-family: Mononoki Nerd Font;
|
||||||
|
font-size: 14px;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#waybar {
|
||||||
|
color: @foreground;
|
||||||
|
background-color: @background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
color: @foreground-inactive;
|
||||||
|
padding-left: 2px;
|
||||||
|
padding-right: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.active {
|
||||||
|
color: @foreground;
|
||||||
|
background-color: @background-alt;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wireplumber,
|
||||||
|
#bat,
|
||||||
|
#net {
|
||||||
|
background-color: @background-alt;
|
||||||
|
border-radius: 3px;
|
||||||
|
padding-left: 0.5em;
|
||||||
|
padding-right: 0.5em;
|
||||||
|
margin-left: 0.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery,
|
||||||
|
#network {
|
||||||
|
margin-right: 0.8em;
|
||||||
|
}
|
||||||
Executable
+3
@@ -0,0 +1,3 @@
|
|||||||
|
[General]
|
||||||
|
initialize_flag=1
|
||||||
|
random_key="hKFp/6AthaXGQh2Nq1gmAYViikFcece9io5cYNg9F3E="
|
||||||
Executable
+56
@@ -0,0 +1,56 @@
|
|||||||
|
[General]
|
||||||
|
GeoLocale=system
|
||||||
|
SensitiveInfoMaskOn=true
|
||||||
|
autoPlayGif=false
|
||||||
|
autoScale=true
|
||||||
|
bForceMaximizeWM=false
|
||||||
|
captureHDCamera=true
|
||||||
|
cefInstanceCountLimit=-1
|
||||||
|
cefRefreshTime=0
|
||||||
|
chatListPanelLastWidth=230
|
||||||
|
com.zoom.client.langid=0
|
||||||
|
conf.webserver=https://zoom.us
|
||||||
|
currentMeetingId=
|
||||||
|
deviceID=3C:9C:0F:14:A7:21
|
||||||
|
disableCef=false
|
||||||
|
enable.host.auto.grab=true
|
||||||
|
enableAlphaBuffer=true
|
||||||
|
enableCefGpu=false
|
||||||
|
enableCefLog=false
|
||||||
|
enableCloudSwitch=true
|
||||||
|
enableLog=true
|
||||||
|
enableMiniWindow=true
|
||||||
|
enableQmlCache=true
|
||||||
|
enableScreenSaveGuard=false
|
||||||
|
enableStartMeetingWithRoomSystem=false
|
||||||
|
enableTestMode=false
|
||||||
|
enablegpucomputeutilization=false
|
||||||
|
fake.version=
|
||||||
|
flashChatTime=0
|
||||||
|
forceEnableTrayIcon=true
|
||||||
|
forceSSOURL=
|
||||||
|
hideCrashReport=false
|
||||||
|
host.auto.grab.interval=10
|
||||||
|
isTransCoding=false
|
||||||
|
logLevel=info
|
||||||
|
newMeetingWithVideo=true
|
||||||
|
noSandbox=false
|
||||||
|
playSoundForNewMessage=false
|
||||||
|
shareBarTopMargin=0
|
||||||
|
showOneTimePTAICTipHubble=true
|
||||||
|
showOneTimeQAMostUpvoteHubble=true
|
||||||
|
showOneTimeQueriesOptionTip=true
|
||||||
|
showOneTimeTranslationUpSellTip=false
|
||||||
|
showSystemTitlebar=false
|
||||||
|
sso_domain=.zoom.us
|
||||||
|
sso_gov_domain=.zoomgov.com
|
||||||
|
system.audio.type=default
|
||||||
|
timeFormat12HoursEnable=true
|
||||||
|
translationFreeTrialTipShowTime=0
|
||||||
|
upcoming_meeting_header_image=
|
||||||
|
useSystemTheme=false
|
||||||
|
userEmailAddress=
|
||||||
|
xwayland=true
|
||||||
|
|
||||||
|
[AS]
|
||||||
|
showframewindow=true
|
||||||
Reference in New Issue
Block a user