Commit for generation 220
This commit is contained in:
67
flake.nix
67
flake.nix
@@ -1,19 +1,47 @@
|
|||||||
{
|
{
|
||||||
description = "NixOS whole-scope system configuration flake";
|
description = "pagedMov's NixOS configuration";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
home-manager.url = "github:nix-community/home-manager";
|
|
||||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
home-manager = {
|
||||||
|
url = "github:nix-community/home-manager";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
|
hypr-contrib.url = "github:hyprwm/contrib";
|
||||||
|
hyprpicker.url = "github:hyprwm/hyprpicker";
|
||||||
|
hyprland = {
|
||||||
|
type = "git";
|
||||||
|
url = "https://github.com/hyprwm/Hyprland";
|
||||||
|
submodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
catppuccin-bat = {
|
||||||
|
url = "github:catppuccin/bat";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
catppuccin-cava = {
|
||||||
|
url = "github:catppuccin/cava";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
catppuccin-starship = {
|
||||||
|
url = "github:catppuccin/starship";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
spicetify-nix = {
|
||||||
|
url = "github:gerg-l/spicetify-nix";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
#glasshouse-desktop dots
|
#glasshouse-desktop dots
|
||||||
nvim.url = "path:/home/pagedmov/sysflakes/glasshouse-desktop/dotfiles/packages/nixvim";
|
nvim.url = "path:/home/pagedmov/sysflakes/glasshouse-desktop/dotfiles/nixvim";
|
||||||
nix-autobahn.url = "path:/home/pagedmov/sysflakes/glasshouse-desktop/derivations/nix-autobahn";
|
nix-autobahn.url = "path:/home/pagedmov/sysflakes/glasshouse-desktop/derivations/nix-autobahn";
|
||||||
toilet.url = "path:/home/pagedmov/sysflakes/glasshouse-desktop/dotfiles/packages/toilet";
|
toilet.url = "path:/home/pagedmov/sysflakes/glasshouse-desktop/dotfiles/toilet";
|
||||||
foundryvtt.url = "github:reckenrode/nix-foundryvtt";
|
|
||||||
rose-pine-hyprcursor.url = "github:ndom91/rose-pine-hyprcursor";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { nixpkgs, rose-pine-hyprcursor, home-manager, foundryvtt, nvim, toilet, nix-autobahn, ... }@inputs:
|
outputs = { nixpkgs, home-manager, self, nvim, toilet, nix-autobahn, ... }@inputs:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
user = "pagedmov";
|
user = "pagedmov";
|
||||||
@@ -25,32 +53,13 @@
|
|||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
glasshouse = nixpkgs.lib.nixosSystem {
|
glasshouse = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
|
inherit self;
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
inherit allowed-unfree-packages user;
|
inherit allowed-unfree-packages user;
|
||||||
};
|
};
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [ ./glasshouse-desktop/sys ];
|
||||||
./glasshouse-desktop/configuration.nix
|
|
||||||
home-manager.nixosModules.home-manager
|
|
||||||
foundryvtt.nixosModules.foundryvtt
|
|
||||||
{
|
|
||||||
home-manager.useGlobalPkgs = true;
|
|
||||||
home-manager.useUserPackages = true;
|
|
||||||
home-manager.users.${user} = import ./glasshouse-desktop/home.nix;
|
|
||||||
home-manager.extraSpecialArgs = {
|
|
||||||
inherit allowed-unfree-packages user;
|
|
||||||
nvim = nvim.packages."x86_64-linux".default;
|
|
||||||
toilet = toilet.packages."x86_64-linux".default;
|
|
||||||
nix-autobahn = nix-autobahn.packages."x86_64-linux".nix-autobahn;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
|
||||||
specialArgs = {
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
environment.systemPackages = with nixpkgs; environment.systemPackages ++ [
|
|
||||||
rose-pine-hyprcursor.packages."x86_64-linux".default
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,213 +0,0 @@
|
|||||||
|
|
||||||
{ config, lib, pkgs, inputs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
system.stateVersion = "24.05";
|
|
||||||
imports =
|
|
||||||
[
|
|
||||||
./hardware-configuration.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
## System - Environment ##
|
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
|
||||||
|
|
||||||
networking = {
|
|
||||||
networkmanager.enable = true;
|
|
||||||
hostName = "glasshaus";
|
|
||||||
hosts = {
|
|
||||||
"192.168.1.163" = [ "glasshaus.info" ];
|
|
||||||
};
|
|
||||||
firewall = {
|
|
||||||
enable = true;
|
|
||||||
allowedTCPPorts = [ 30000 ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
environment = {
|
|
||||||
variables = {
|
|
||||||
XCURSOR_SIZE = "24";
|
|
||||||
PATH = "${pkgs.clang-tools}/bin:$PATH";
|
|
||||||
};
|
|
||||||
shells = with pkgs; [
|
|
||||||
zsh
|
|
||||||
bash
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
time.timeZone = "America/New_York";
|
|
||||||
i18n.defaultLocale = "en_US.UTF-8";
|
|
||||||
|
|
||||||
programs.hyprland.enable = true;
|
|
||||||
programs.steam.enable = true;
|
|
||||||
home-manager.backupFileExtension = "backup";
|
|
||||||
|
|
||||||
## Programs - Services - Hardware ##
|
|
||||||
|
|
||||||
programs = {
|
|
||||||
zsh.enable = true;
|
|
||||||
nix-ld = {
|
|
||||||
enable = true;
|
|
||||||
libraries = with pkgs; [
|
|
||||||
stdenv.cc.cc
|
|
||||||
ffmpeg-full
|
|
||||||
];
|
|
||||||
};
|
|
||||||
gnupg.agent = {
|
|
||||||
enable = true;
|
|
||||||
enableSSHSupport = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services = {
|
|
||||||
pipewire = {
|
|
||||||
enable = true;
|
|
||||||
pulse.enable = true;
|
|
||||||
wireplumber.enable = true;
|
|
||||||
alsa.enable = true;
|
|
||||||
alsa.support32Bit = true;
|
|
||||||
};
|
|
||||||
udev.enable = true;
|
|
||||||
dbus.enable = true;
|
|
||||||
mullvad-vpn.enable = true;
|
|
||||||
blueman.enable = true;
|
|
||||||
openssh.enable = true;
|
|
||||||
foundryvtt = {
|
|
||||||
enable = false;
|
|
||||||
hostName = "wumbodnd";
|
|
||||||
package = inputs.foundryvtt.packages.${pkgs.system}.foundryvtt_12;
|
|
||||||
minifyStaticFiles = true;
|
|
||||||
proxyPort = 443;
|
|
||||||
proxySSL = false;
|
|
||||||
upnp = false;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
hardware = {
|
|
||||||
keyboard.uhk.enable = true;
|
|
||||||
amdgpu.amdvlk.enable = true;
|
|
||||||
bluetooth = {
|
|
||||||
enable = true;
|
|
||||||
powerOnBoot = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
## Users - Packages ##
|
|
||||||
|
|
||||||
security.sudo.extraConfig = ''
|
|
||||||
pagedmov ALL=(ALL) NOPASSWD: /run/current-system/sw/bin/nixos-rebuild
|
|
||||||
'';
|
|
||||||
users.users.pagedmov = {
|
|
||||||
isNormalUser = true;
|
|
||||||
shell = pkgs.zsh;
|
|
||||||
extraGroups = [ "wheel" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
|
||||||
|
|
||||||
fonts.packages = with pkgs; [
|
|
||||||
times-newer-roman
|
|
||||||
nerdfonts
|
|
||||||
jetbrains-mono
|
|
||||||
];
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
# a
|
|
||||||
alsa-lib
|
|
||||||
alsa-utils
|
|
||||||
# b
|
|
||||||
bc
|
|
||||||
# c
|
|
||||||
cava
|
|
||||||
clang
|
|
||||||
clang-tools
|
|
||||||
cmake
|
|
||||||
# d
|
|
||||||
# e
|
|
||||||
# f
|
|
||||||
fail2ban
|
|
||||||
feh
|
|
||||||
ffmpeg-full
|
|
||||||
fuse
|
|
||||||
fzf
|
|
||||||
# g
|
|
||||||
git
|
|
||||||
gnumake
|
|
||||||
gst_all_1.gstreamer
|
|
||||||
# h
|
|
||||||
htop
|
|
||||||
hyprland
|
|
||||||
hyprland-workspaces
|
|
||||||
hyprpaper
|
|
||||||
hyprpicker
|
|
||||||
# i
|
|
||||||
imagemagick
|
|
||||||
inetutils
|
|
||||||
# j
|
|
||||||
# k
|
|
||||||
kitty
|
|
||||||
# l
|
|
||||||
libclang
|
|
||||||
libcxx
|
|
||||||
lolcat
|
|
||||||
lsof
|
|
||||||
lua-language-server
|
|
||||||
luarocks
|
|
||||||
# m
|
|
||||||
mesa
|
|
||||||
mpd
|
|
||||||
mullvad
|
|
||||||
# n
|
|
||||||
neofetch
|
|
||||||
nix-index
|
|
||||||
nix-prefetch-scripts
|
|
||||||
nixos-option
|
|
||||||
nix-search-cli
|
|
||||||
# o
|
|
||||||
openssl
|
|
||||||
# p
|
|
||||||
p7zip
|
|
||||||
pamixer
|
|
||||||
parted
|
|
||||||
pass
|
|
||||||
pavucontrol
|
|
||||||
pkg-config
|
|
||||||
playerctl
|
|
||||||
protonmail-bridge
|
|
||||||
protontricks
|
|
||||||
pyright
|
|
||||||
# q
|
|
||||||
quintom-cursor-theme
|
|
||||||
# r
|
|
||||||
# s
|
|
||||||
socat
|
|
||||||
sox
|
|
||||||
stress
|
|
||||||
# t
|
|
||||||
tor
|
|
||||||
tree
|
|
||||||
# u
|
|
||||||
unrar
|
|
||||||
unzip
|
|
||||||
usbutils
|
|
||||||
# v
|
|
||||||
vim
|
|
||||||
vim
|
|
||||||
vscode-langservers-extracted
|
|
||||||
vulkan-loader
|
|
||||||
# w
|
|
||||||
wget
|
|
||||||
wine
|
|
||||||
wineWowPackages.full
|
|
||||||
wl-clipboard
|
|
||||||
# x
|
|
||||||
xpad
|
|
||||||
xwaylandvideobridge
|
|
||||||
# y
|
|
||||||
# z
|
|
||||||
];
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
Submodule glasshouse-desktop/derivations/nix-autobahn deleted from 9122088c5d
Submodule glasshouse-desktop/derivations/nix-patchtools deleted from 6cc6fa4e0d
@@ -1,92 +0,0 @@
|
|||||||
Running phase: unpackPhase
|
|
||||||
@nix { "action": "setPhase", "phase": "unpackPhase" }
|
|
||||||
unpacking source archive /nix/store/pdyvdwb4as2sq269fd9s0xsavd1mricn-source
|
|
||||||
source root is source
|
|
||||||
Running phase: patchPhase
|
|
||||||
@nix { "action": "setPhase", "phase": "patchPhase" }
|
|
||||||
Running phase: updateAutotoolsGnuConfigScriptsPhase
|
|
||||||
@nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" }
|
|
||||||
Running phase: configurePhase
|
|
||||||
@nix { "action": "setPhase", "phase": "configurePhase" }
|
|
||||||
fixing cmake files...
|
|
||||||
cmake flags: -GNinja -DCMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY=OFF -DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DCMAKE_INSTALL_LOCALEDIR=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles/share/locale -DCMAKE_INSTALL_LIBEXECDIR=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles/libexec -DCMAKE_INSTALL_LIBDIR=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles/lib -DCMAKE_INSTALL_DOCDIR=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles/share/doc/pagedmov-dotfiles -DCMAKE_INSTALL_INFODIR=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles/share/info -DCMAKE_INSTALL_MANDIR=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles/share/man -DCMAKE_INSTALL_OLDINCLUDEDIR=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles/include -DCMAKE_INSTALL_INCLUDEDIR=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles/include -DCMAKE_INSTALL_SBINDIR=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles/sbin -DCMAKE_INSTALL_BINDIR=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles/bin -DCMAKE_INSTALL_NAME_DIR=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles/lib -DCMAKE_POLICY_DEFAULT_CMP0025=NEW -DCMAKE_OSX_SYSROOT= -DCMAKE_FIND_FRAMEWORK=LAST -DCMAKE_STRIP=/nix/store/zznja5f8v3jafffyah1rk46vpfcn38dv-gcc-wrapper-13.3.0/bin/strip -DCMAKE_RANLIB=/nix/store/zznja5f8v3jafffyah1rk46vpfcn38dv-gcc-wrapper-13.3.0/bin/ranlib -DCMAKE_AR=/nix/store/zznja5f8v3jafffyah1rk46vpfcn38dv-gcc-wrapper-13.3.0/bin/ar -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DCMAKE_INSTALL_PREFIX=/nix/store/ldwlqdbslcl2s5s2dasvniydlxd7i381-pagedmov-dotfiles
|
|
||||||
-- The C compiler identification is GNU 13.3.0
|
|
||||||
-- The CXX compiler identification is GNU 13.3.0
|
|
||||||
-- Detecting C compiler ABI info
|
|
||||||
-- Detecting C compiler ABI info - done
|
|
||||||
-- Check for working C compiler: /nix/store/zznja5f8v3jafffyah1rk46vpfcn38dv-gcc-wrapper-13.3.0/bin/gcc - skipped
|
|
||||||
-- Detecting C compile features
|
|
||||||
-- Detecting C compile features - done
|
|
||||||
-- Detecting CXX compiler ABI info
|
|
||||||
-- Detecting CXX compiler ABI info - done
|
|
||||||
-- Check for working CXX compiler: /nix/store/zznja5f8v3jafffyah1rk46vpfcn38dv-gcc-wrapper-13.3.0/bin/g++ - skipped
|
|
||||||
-- Detecting CXX compile features
|
|
||||||
-- Detecting CXX compile features - done
|
|
||||||
-- Gathering git info
|
|
||||||
fatal: not a git repository (or any of the parent directories): .git
|
|
||||||
fatal: not a git repository (or any of the parent directories): .git
|
|
||||||
fatal: not a git repository (or any of the parent directories): .git
|
|
||||||
fatal: not a git repository (or any of the parent directories): .git
|
|
||||||
fatal: not a git repository (or any of the parent directories): .git
|
|
||||||
fatal: not a git repository (or any of the parent directories): .git
|
|
||||||
fatal: not a git repository (or any of the parent directories): .git
|
|
||||||
-- Found Python3: /nix/store/h3i0acpmr8mrjx07519xxmidv8mpax4y-python3-3.12.5/bin/python3.12 (found version "3.12.5") found components: Interpreter
|
|
||||||
[0mBuilding itab.c/itab.h...[0m
|
|
||||||
-- Found PkgConfig: /nix/store/02vzklfgfpaf457rq927fq3jj5hn133f-pkg-config-wrapper-0.29.2/bin/pkg-config (found version "0.29.2")
|
|
||||||
Package wayland-protocols was not found in the pkg-config search path.
|
|
||||||
Perhaps you should add the directory containing `wayland-protocols.pc'
|
|
||||||
to the PKG_CONFIG_PATH environment variable
|
|
||||||
No package 'wayland-protocols' found
|
|
||||||
-- Found wayland-protocols at
|
|
||||||
Package wayland-scanner was not found in the pkg-config search path.
|
|
||||||
Perhaps you should add the directory containing `wayland-scanner.pc'
|
|
||||||
to the PKG_CONFIG_PATH environment variable
|
|
||||||
No package 'wayland-scanner' found
|
|
||||||
-- Found wayland-scanner pkgdatadir at
|
|
||||||
-- Configuring Hyprland in Release with CMake
|
|
||||||
-- Checking deps...
|
|
||||||
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
|
|
||||||
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
|
|
||||||
-- Found Threads: TRUE
|
|
||||||
-- Found OpenGL: /nix/store/shvpkfqpaas60fakhw62hp3xgpfh4kdm-libglvnd-1.7.0/lib/libOpenGL.so found components: GLES3
|
|
||||||
-- Checking for module 'hyprutils>=0.2.1'
|
|
||||||
-- Found hyprutils, version 0.2.1
|
|
||||||
-- Checking for modules 'aquamarine;xkbcommon;uuid;wayland-server;wayland-protocols;cairo;pango;pangocairo;pixman-1;xcursor;libdrm;libinput;gbm;gio-2.0;hyprlang>=0.3.2;hyprcursor>=0.1.7;hyprutils>=0.2.1'
|
|
||||||
-- No package 'aquamarine' found
|
|
||||||
-- No package 'xkbcommon' found
|
|
||||||
-- No package 'uuid' found
|
|
||||||
-- No package 'wayland-server' found
|
|
||||||
-- No package 'wayland-protocols' found
|
|
||||||
-- No package 'cairo' found
|
|
||||||
-- No package 'pango' found
|
|
||||||
-- No package 'pangocairo' found
|
|
||||||
-- No package 'pixman-1' found
|
|
||||||
-- No package 'xcursor' found
|
|
||||||
-- No package 'libinput' found
|
|
||||||
-- No package 'gio-2.0' found
|
|
||||||
-- No package 'hyprlang' found
|
|
||||||
-- No package 'hyprcursor' found
|
|
||||||
[31mCMake Error at /nix/store/yzi080r2c1zn2jzrhcfdv7dmr92yw07l-cmake-3.29.6/share/cmake-3.29/Modules/FindPkgConfig.cmake:634 (message):
|
|
||||||
The following required packages were not found:
|
|
||||||
|
|
||||||
- aquamarine
|
|
||||||
- xkbcommon
|
|
||||||
- uuid
|
|
||||||
- wayland-server
|
|
||||||
- wayland-protocols
|
|
||||||
- cairo
|
|
||||||
- pango
|
|
||||||
- pangocairo
|
|
||||||
- pixman-1
|
|
||||||
- xcursor
|
|
||||||
- libinput
|
|
||||||
- gio-2.0
|
|
||||||
- hyprlang>=0.3.2
|
|
||||||
- hyprcursor>=0.1.7
|
|
||||||
|
|
||||||
Call Stack (most recent call first):
|
|
||||||
/nix/store/yzi080r2c1zn2jzrhcfdv7dmr92yw07l-cmake-3.29.6/share/cmake-3.29/Modules/FindPkgConfig.cmake:862 (_pkg_check_modules_internal)
|
|
||||||
CMakeLists.txt:94 (pkg_check_modules)
|
|
||||||
|
|
||||||
[0m
|
|
||||||
-- Configuring incomplete, errors occurred!
|
|
||||||
457
glasshouse-desktop/dotfiles/flake.lock
generated
457
glasshouse-desktop/dotfiles/flake.lock
generated
@@ -1,457 +0,0 @@
|
|||||||
{
|
|
||||||
"nodes": {
|
|
||||||
"devshell": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixvim",
|
|
||||||
"nixvim",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1722113426,
|
|
||||||
"narHash": "sha256-Yo/3loq572A8Su6aY5GP56knpuKYRvM2a1meP9oJZCw=",
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "devshell",
|
|
||||||
"rev": "67cce7359e4cd3c45296fb4aaf6a19e2a9c757ae",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "devshell",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-compat": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1696426674,
|
|
||||||
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
|
|
||||||
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
|
|
||||||
"revCount": 57,
|
|
||||||
"type": "tarball",
|
|
||||||
"url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.0.1/018afb31-abd1-7bff-a5e4-cff7e18efb7a/source.tar.gz"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"type": "tarball",
|
|
||||||
"url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-compat_2": {
|
|
||||||
"flake": false,
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1696426674,
|
|
||||||
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
|
|
||||||
"owner": "edolstra",
|
|
||||||
"repo": "flake-compat",
|
|
||||||
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "edolstra",
|
|
||||||
"repo": "flake-compat",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-parts": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs-lib": "nixpkgs-lib"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1726153070,
|
|
||||||
"narHash": "sha256-HO4zgY0ekfwO5bX0QH/3kJ/h4KvUDFZg8YpkNwIbg1U=",
|
|
||||||
"owner": "hercules-ci",
|
|
||||||
"repo": "flake-parts",
|
|
||||||
"rev": "bcef6817a8b2aa20a5a6dbb19b43e63c5bf8619a",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "hercules-ci",
|
|
||||||
"repo": "flake-parts",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-parts_2": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs-lib": [
|
|
||||||
"nixvim",
|
|
||||||
"nixvim",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1726153070,
|
|
||||||
"narHash": "sha256-HO4zgY0ekfwO5bX0QH/3kJ/h4KvUDFZg8YpkNwIbg1U=",
|
|
||||||
"owner": "hercules-ci",
|
|
||||||
"repo": "flake-parts",
|
|
||||||
"rev": "bcef6817a8b2aa20a5a6dbb19b43e63c5bf8619a",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "hercules-ci",
|
|
||||||
"repo": "flake-parts",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-utils": {
|
|
||||||
"inputs": {
|
|
||||||
"systems": "systems"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1726560853,
|
|
||||||
"narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=",
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"git-hooks": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-compat": [
|
|
||||||
"nixvim",
|
|
||||||
"nixvim",
|
|
||||||
"flake-compat"
|
|
||||||
],
|
|
||||||
"gitignore": "gitignore",
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixvim",
|
|
||||||
"nixvim",
|
|
||||||
"nixpkgs"
|
|
||||||
],
|
|
||||||
"nixpkgs-stable": [
|
|
||||||
"nixvim",
|
|
||||||
"nixvim",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1726745158,
|
|
||||||
"narHash": "sha256-D5AegvGoEjt4rkKedmxlSEmC+nNLMBPWFxvmYnVLhjk=",
|
|
||||||
"owner": "cachix",
|
|
||||||
"repo": "git-hooks.nix",
|
|
||||||
"rev": "4e743a6920eab45e8ba0fbe49dc459f1423a4b74",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "cachix",
|
|
||||||
"repo": "git-hooks.nix",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"gitignore": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixvim",
|
|
||||||
"nixvim",
|
|
||||||
"git-hooks",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1709087332,
|
|
||||||
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
||||||
"owner": "hercules-ci",
|
|
||||||
"repo": "gitignore.nix",
|
|
||||||
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "hercules-ci",
|
|
||||||
"repo": "gitignore.nix",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"gitignore_2": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixvim",
|
|
||||||
"pre-commit-hooks",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1709087332,
|
|
||||||
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
||||||
"owner": "hercules-ci",
|
|
||||||
"repo": "gitignore.nix",
|
|
||||||
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "hercules-ci",
|
|
||||||
"repo": "gitignore.nix",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hackneyed-cursors": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1,
|
|
||||||
"narHash": "sha256-Hp4mq7zinLJlcJAdncyGbCwyu9WBjwb2dHAX492zcOA=",
|
|
||||||
"path": "packages/theme/cursor",
|
|
||||||
"type": "path"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"path": "packages/theme/cursor",
|
|
||||||
"type": "path"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"home-manager": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixvim",
|
|
||||||
"nixvim",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1726985855,
|
|
||||||
"narHash": "sha256-NJPGK030Y3qETpWBhj9oobDQRbXdXOPxtu+YgGvZ84o=",
|
|
||||||
"owner": "nix-community",
|
|
||||||
"repo": "home-manager",
|
|
||||||
"rev": "04213d1ce4221f5d9b40bcee30706ce9a91d148d",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nix-community",
|
|
||||||
"repo": "home-manager",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nix-darwin": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixvim",
|
|
||||||
"nixvim",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1727003835,
|
|
||||||
"narHash": "sha256-Cfllbt/ADfO8oxbT984MhPHR6FJBaglsr1SxtDGbpec=",
|
|
||||||
"owner": "lnl7",
|
|
||||||
"repo": "nix-darwin",
|
|
||||||
"rev": "bd7d1e3912d40f799c5c0f7e5820ec950f1e0b3d",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "lnl7",
|
|
||||||
"repo": "nix-darwin",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1726937504,
|
|
||||||
"narHash": "sha256-bvGoiQBvponpZh8ClUcmJ6QnsNKw0EMrCQJARK3bI1c=",
|
|
||||||
"owner": "nixos",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "9357f4f23713673f310988025d9dc261c20e70c6",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nixos",
|
|
||||||
"ref": "nixos-unstable",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs-lib": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1725233747,
|
|
||||||
"narHash": "sha256-Ss8QWLXdr2JCBPcYChJhz4xJm+h/xjl4G0c0XlP6a74=",
|
|
||||||
"type": "tarball",
|
|
||||||
"url": "https://github.com/NixOS/nixpkgs/archive/356624c12086a18f2ea2825fed34523d60ccc4e3.tar.gz"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"type": "tarball",
|
|
||||||
"url": "https://github.com/NixOS/nixpkgs/archive/356624c12086a18f2ea2825fed34523d60ccc4e3.tar.gz"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs-stable": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1720386169,
|
|
||||||
"narHash": "sha256-NGKVY4PjzwAa4upkGtAMz1npHGoRzWotlSnVlqI40mo=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "194846768975b7ad2c4988bdb82572c00222c0d7",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NixOS",
|
|
||||||
"ref": "nixos-24.05",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixvim": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-parts": "flake-parts",
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
],
|
|
||||||
"nixvim": "nixvim_2",
|
|
||||||
"pre-commit-hooks": "pre-commit-hooks"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1,
|
|
||||||
"narHash": "sha256-Wq0yzeLXCUjoWkQK8IA/gdLUTsWP60fjKfS5go2fdC4=",
|
|
||||||
"path": "packages/nixvim",
|
|
||||||
"type": "path"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"path": "packages/nixvim",
|
|
||||||
"type": "path"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixvim_2": {
|
|
||||||
"inputs": {
|
|
||||||
"devshell": "devshell",
|
|
||||||
"flake-compat": "flake-compat",
|
|
||||||
"flake-parts": "flake-parts_2",
|
|
||||||
"git-hooks": "git-hooks",
|
|
||||||
"home-manager": "home-manager",
|
|
||||||
"nix-darwin": "nix-darwin",
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixvim",
|
|
||||||
"nixpkgs"
|
|
||||||
],
|
|
||||||
"nuschtosSearch": "nuschtosSearch",
|
|
||||||
"treefmt-nix": "treefmt-nix"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1727286212,
|
|
||||||
"narHash": "sha256-iab+k8m6+MBkwQoyqMcMYggwILHCkMSkgNYd1GN0FbM=",
|
|
||||||
"owner": "nix-community",
|
|
||||||
"repo": "nixvim",
|
|
||||||
"rev": "7bda0f1ce49e9da252bcee20b5f700e6dcd3cf8d",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nix-community",
|
|
||||||
"repo": "nixvim",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nuschtosSearch": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-utils": "flake-utils",
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixvim",
|
|
||||||
"nixvim",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1726995581,
|
|
||||||
"narHash": "sha256-lgsE/CTkZk9OIiFGEIrxXZQ7Feiv41dqlN7pEfTdgew=",
|
|
||||||
"owner": "NuschtOS",
|
|
||||||
"repo": "search",
|
|
||||||
"rev": "3b7dd61b365ca45380707453758a45f2e9977be3",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NuschtOS",
|
|
||||||
"repo": "search",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"pre-commit-hooks": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-compat": "flake-compat_2",
|
|
||||||
"gitignore": "gitignore_2",
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixvim",
|
|
||||||
"nixpkgs"
|
|
||||||
],
|
|
||||||
"nixpkgs-stable": "nixpkgs-stable"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1726745158,
|
|
||||||
"narHash": "sha256-D5AegvGoEjt4rkKedmxlSEmC+nNLMBPWFxvmYnVLhjk=",
|
|
||||||
"owner": "cachix",
|
|
||||||
"repo": "pre-commit-hooks.nix",
|
|
||||||
"rev": "4e743a6920eab45e8ba0fbe49dc459f1423a4b74",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "cachix",
|
|
||||||
"repo": "pre-commit-hooks.nix",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": {
|
|
||||||
"inputs": {
|
|
||||||
"hackneyed-cursors": "hackneyed-cursors",
|
|
||||||
"nixpkgs": "nixpkgs",
|
|
||||||
"nixvim": "nixvim",
|
|
||||||
"toilet": "toilet"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"systems": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1681028828,
|
|
||||||
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
|
||||||
"owner": "nix-systems",
|
|
||||||
"repo": "default",
|
|
||||||
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nix-systems",
|
|
||||||
"repo": "default",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"toilet": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1,
|
|
||||||
"narHash": "sha256-S3crmqg/CDKf+QTwnZUR6udyjsvqS0P0y56wGuJmOno=",
|
|
||||||
"path": "packages/toilet",
|
|
||||||
"type": "path"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"path": "packages/toilet",
|
|
||||||
"type": "path"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"treefmt-nix": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixvim",
|
|
||||||
"nixvim",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1726734507,
|
|
||||||
"narHash": "sha256-VUH5O5AcOSxb0uL/m34dDkxFKP6WLQ6y4I1B4+N3L2w=",
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "treefmt-nix",
|
|
||||||
"rev": "ee41a466c2255a3abe6bc50fc6be927cdee57a9f",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "treefmt-nix",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": "root",
|
|
||||||
"version": 7
|
|
||||||
}
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
{
|
|
||||||
inputs = {
|
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
||||||
nixvim = {
|
|
||||||
url = "path:packages/nixvim";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
toilet = {
|
|
||||||
url = "path:packages/toilet";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
hackneyed-cursors = {
|
|
||||||
url = "path:packages/theme/cursor";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs, nixvim, hackneyed-cursors, toilet, ... }@inputs:
|
|
||||||
let
|
|
||||||
system = "x86_64-linux";
|
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
|
||||||
in {
|
|
||||||
# Consolidating packages into a single one
|
|
||||||
packages.${system} = {
|
|
||||||
default = pkgs.stdenv.mkDerivation {
|
|
||||||
name = "desktop-env-tools";
|
|
||||||
src = ./.;
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
nixvim.packages.${system}.default
|
|
||||||
toilet.packages.${system}.default
|
|
||||||
];
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/bin
|
|
||||||
ln -s ${nixvim.packages.${system}.default}/bin/nvim $out/bin/nvim
|
|
||||||
ln -s ${toilet.packages.${system}.default}/bin/toilet $out/bin/toilet
|
|
||||||
ln -s ${hackneyed-cursors.packages.${system}.default} $out/bin/toilet
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,440 +0,0 @@
|
|||||||
# See dunst(5) for all configuration options
|
|
||||||
|
|
||||||
[global]
|
|
||||||
### Display ###
|
|
||||||
|
|
||||||
# Which monitor should the notifications be displayed on.
|
|
||||||
monitor = 0
|
|
||||||
|
|
||||||
# Display notification on focused monitor. Possible modes are:
|
|
||||||
# mouse: follow mouse pointer
|
|
||||||
# keyboard: follow window with keyboard focus
|
|
||||||
# none: don't follow anything
|
|
||||||
#
|
|
||||||
# "keyboard" needs a window manager that exports the
|
|
||||||
# _NET_ACTIVE_WINDOW property.
|
|
||||||
# This should be the case for almost all modern window managers.
|
|
||||||
#
|
|
||||||
# If this option is set to mouse or keyboard, the monitor option
|
|
||||||
# will be ignored.
|
|
||||||
follow = none
|
|
||||||
|
|
||||||
### Geometry ###
|
|
||||||
|
|
||||||
# dynamic width from 0 to 300
|
|
||||||
# width = (0, 300)
|
|
||||||
# constant width of 300
|
|
||||||
width = (111, 444)
|
|
||||||
|
|
||||||
# The maximum height of a single notification, excluding the frame.
|
|
||||||
height = 222
|
|
||||||
|
|
||||||
# Position the notification in the top right corner
|
|
||||||
origin = top-right
|
|
||||||
|
|
||||||
# Offset from the origin
|
|
||||||
offset = 15x55
|
|
||||||
|
|
||||||
# Scale factor. It is auto-detected if value is 0.
|
|
||||||
scale = 0
|
|
||||||
|
|
||||||
# Maximum number of notification (0 means no limit)
|
|
||||||
notification_limit = 0
|
|
||||||
|
|
||||||
### Progress bar ###
|
|
||||||
|
|
||||||
# Turn on the progess bar. It appears when a progress hint is passed with
|
|
||||||
# for example dunstify -h int:value:12
|
|
||||||
progress_bar = true
|
|
||||||
|
|
||||||
# Set the progress bar height. This includes the frame, so make sure
|
|
||||||
# it's at least twice as big as the frame width.
|
|
||||||
progress_bar_height = 10
|
|
||||||
|
|
||||||
# Set the frame width of the progress bar
|
|
||||||
progress_bar_frame_width = 1
|
|
||||||
|
|
||||||
# Set the minimum width for the progress bar
|
|
||||||
progress_bar_min_width = 150
|
|
||||||
|
|
||||||
# Set the maximum width for the progress bar
|
|
||||||
progress_bar_max_width = 300
|
|
||||||
|
|
||||||
# Show how many messages are currently hidden (because of
|
|
||||||
# notification_limit).
|
|
||||||
indicate_hidden = yes
|
|
||||||
|
|
||||||
# The transparency of the window. Range: [0; 100].
|
|
||||||
# This option will only work if a compositing window manager is
|
|
||||||
# present (e.g. xcompmgr, compiz, etc.). (X11 only)
|
|
||||||
transparency = 0
|
|
||||||
|
|
||||||
# Draw a line of "separator_height" pixel height between two
|
|
||||||
# notifications.
|
|
||||||
# Set to 0 to disable.
|
|
||||||
separator_height = 5
|
|
||||||
|
|
||||||
# Padding between text and separator.
|
|
||||||
padding = 15
|
|
||||||
|
|
||||||
# Horizontal padding.
|
|
||||||
horizontal_padding = 15
|
|
||||||
|
|
||||||
# Padding between text and icon.
|
|
||||||
text_icon_padding = 0
|
|
||||||
|
|
||||||
# Defines width in pixels of frame around the notification window.
|
|
||||||
# Set to 0 to disable.
|
|
||||||
frame_width = 0
|
|
||||||
|
|
||||||
# Defines color of the frame around the notification window.
|
|
||||||
frame_color = "#16161E"
|
|
||||||
|
|
||||||
# Define a color for the separator.
|
|
||||||
# possible values are:
|
|
||||||
# * auto: dunst tries to find a color fitting to the background;
|
|
||||||
# * foreground: use the same color as the foreground;
|
|
||||||
# * frame: use the same color as the frame;
|
|
||||||
# * anything else will be interpreted as a X color.
|
|
||||||
separator_color = frame
|
|
||||||
|
|
||||||
# Sort messages by urgency.
|
|
||||||
sort = yes
|
|
||||||
|
|
||||||
# Don't remove messages, if the user is idle (no mouse or keyboard input)
|
|
||||||
# for longer than idle_threshold seconds.
|
|
||||||
# Set to 0 to disable.
|
|
||||||
# A client can set the 'transient' hint to bypass this. See the rules
|
|
||||||
# section for how to disable this if necessary
|
|
||||||
# idle_threshold = 120
|
|
||||||
|
|
||||||
### Text ###
|
|
||||||
|
|
||||||
font = Iosevka Medium Italic 10
|
|
||||||
|
|
||||||
# The spacing between lines. If the height is smaller than the
|
|
||||||
# font height, it will get raised to the font height.
|
|
||||||
line_height = 0
|
|
||||||
|
|
||||||
# Possible values are:
|
|
||||||
# full: Allow a small subset of html markup in notifications:
|
|
||||||
# <b>bold</b>
|
|
||||||
# <i>italic</i>
|
|
||||||
# <s>strikethrough</s>
|
|
||||||
# <u>underline</u>
|
|
||||||
#
|
|
||||||
# For a complete reference see
|
|
||||||
# <https://docs.gtk.org/Pango/pango_markup.html>.
|
|
||||||
#
|
|
||||||
# strip: This setting is provided for compatibility with some broken
|
|
||||||
# clients that send markup even though it's not enabled on the
|
|
||||||
# server. Dunst will try to strip the markup but the parsing is
|
|
||||||
# simplistic so using this option outside of matching rules for
|
|
||||||
# specific applications *IS GREATLY DISCOURAGED*.
|
|
||||||
#
|
|
||||||
# no: Disable markup parsing, incoming notifications will be treated as
|
|
||||||
# plain text. Dunst will not advertise that it has the body-markup
|
|
||||||
# capability if this is set as a global setting.
|
|
||||||
#
|
|
||||||
# It's important to note that markup inside the format option will be parsed
|
|
||||||
# regardless of what this is set to.
|
|
||||||
markup = full
|
|
||||||
|
|
||||||
# The format of the message. Possible variables are:
|
|
||||||
# %a appname
|
|
||||||
# %s summary
|
|
||||||
# %b body
|
|
||||||
# %i iconname (including its path)
|
|
||||||
# %I iconname (without its path)
|
|
||||||
# %p progress value if set ([ 0%] to [100%]) or nothing
|
|
||||||
# %n progress value if set without any extra characters
|
|
||||||
# %% Literal %
|
|
||||||
# Markup is allowed
|
|
||||||
format = "<b>%s</b>\n%b"
|
|
||||||
|
|
||||||
# Alignment of message text.
|
|
||||||
# Possible values are "left", "center" and "right".
|
|
||||||
alignment = center
|
|
||||||
|
|
||||||
# Vertical alignment of message text and icon.
|
|
||||||
# Possible values are "top", "center" and "bottom".
|
|
||||||
vertical_alignment = center
|
|
||||||
|
|
||||||
# Show age of message if message is older than show_age_threshold
|
|
||||||
# seconds.
|
|
||||||
# Set to -1 to disable.
|
|
||||||
show_age_threshold = 60
|
|
||||||
|
|
||||||
# Specify where to make an ellipsis in long lines.
|
|
||||||
# Possible values are "start", "middle" and "end".
|
|
||||||
ellipsize = middle
|
|
||||||
|
|
||||||
# Ignore newlines '\n' in notifications.
|
|
||||||
ignore_newline = yes
|
|
||||||
|
|
||||||
# Stack together notifications with the same content
|
|
||||||
stack_duplicates = true
|
|
||||||
|
|
||||||
# Hide the count of stacked notifications with the same content
|
|
||||||
hide_duplicate_count = false
|
|
||||||
|
|
||||||
# Display indicators for URLs (U) and actions (A).
|
|
||||||
show_indicators = no
|
|
||||||
|
|
||||||
### Icons ###
|
|
||||||
|
|
||||||
# Align icons left/right/off
|
|
||||||
icon_position = left
|
|
||||||
|
|
||||||
# Scale small icons up to this size, set to 0 to disable. Helpful
|
|
||||||
# for e.g. small files or high-dpi screens. In case of conflict,
|
|
||||||
# max_icon_size takes precedence over this.
|
|
||||||
icon_size = 48
|
|
||||||
|
|
||||||
# Scale larger icons down to this size, set to 0 to disable
|
|
||||||
max_icon_size = 80
|
|
||||||
|
|
||||||
# Paths to default icons.
|
|
||||||
icon_path = /usr/share/icons/Papirus-Dark/48x48/status/:/usr/share/icons/Papirus-Dark/48x48/devices/:/usr/share/icons/Papirus-Dark/48x48/apps
|
|
||||||
|
|
||||||
### History ###
|
|
||||||
|
|
||||||
# Should a notification popped up from history be sticky or timeout
|
|
||||||
# as if it would normally do.
|
|
||||||
sticky_history = yes
|
|
||||||
|
|
||||||
# Maximum amount of notifications kept in history
|
|
||||||
history_length = 20
|
|
||||||
|
|
||||||
### Misc/Advanced ###
|
|
||||||
|
|
||||||
# dmenu path.
|
|
||||||
dmenu = /usr/bin/dmenu -p dunst:
|
|
||||||
|
|
||||||
# Browser for opening urls in context menu.
|
|
||||||
browser = /usr/bin/firefox -new-tab
|
|
||||||
|
|
||||||
# Always run rule-defined scripts, even if the notification is suppressed
|
|
||||||
always_run_script = true
|
|
||||||
|
|
||||||
# Define the title of the windows spawned by dunst
|
|
||||||
title = Dunst
|
|
||||||
|
|
||||||
# Define the class of the windows spawned by dunst
|
|
||||||
class = Dunst
|
|
||||||
|
|
||||||
# Define the corner radius of the notification window
|
|
||||||
# in pixel size. If the radius is 0, you have no rounded
|
|
||||||
# corners.
|
|
||||||
# The radius will be automatically lowered if it exceeds half of the
|
|
||||||
# notification height to avoid clipping text and/or icons.
|
|
||||||
corner_radius = 5
|
|
||||||
|
|
||||||
# Ignore the dbus closeNotification message.
|
|
||||||
# Useful to enforce the timeout set by dunst configuration. Without this
|
|
||||||
# parameter, an application may close the notification sent before the
|
|
||||||
# user defined timeout.
|
|
||||||
ignore_dbusclose = false
|
|
||||||
|
|
||||||
### Wayland ###
|
|
||||||
# These settings are Wayland-specific. They have no effect when using X11
|
|
||||||
|
|
||||||
# Uncomment this if you want to let notications appear under fullscreen
|
|
||||||
# applications (default: overlay)
|
|
||||||
# layer = top
|
|
||||||
|
|
||||||
# Set this to true to use X11 output on Wayland.
|
|
||||||
force_xwayland = false
|
|
||||||
|
|
||||||
### Legacy
|
|
||||||
|
|
||||||
# Use the Xinerama extension instead of RandR for multi-monitor support.
|
|
||||||
# This setting is provided for compatibility with older nVidia drivers that
|
|
||||||
# do not support RandR and using it on systems that support RandR is highly
|
|
||||||
# discouraged.
|
|
||||||
#
|
|
||||||
# By enabling this setting dunst will not be able to detect when a monitor
|
|
||||||
# is connected or disconnected which might break follow mode if the screen
|
|
||||||
# layout changes.
|
|
||||||
force_xinerama = false
|
|
||||||
|
|
||||||
### mouse
|
|
||||||
|
|
||||||
# Defines list of actions for each mouse event
|
|
||||||
# Possible values are:
|
|
||||||
# * none: Don't do anything.
|
|
||||||
# * do_action: Invoke the action determined by the action_name rule. If there is no
|
|
||||||
# such action, open the context menu.
|
|
||||||
# * open_url: If the notification has exactly one url, open it. If there are multiple
|
|
||||||
# ones, open the context menu.
|
|
||||||
# * close_current: Close current notification.
|
|
||||||
# * close_all: Close all notifications.
|
|
||||||
# * context: Open context menu for the notification.
|
|
||||||
# * context_all: Open context menu for all notifications.
|
|
||||||
# These values can be strung together for each mouse event, and
|
|
||||||
# will be executed in sequence.
|
|
||||||
mouse_left_click = close_current
|
|
||||||
mouse_middle_click = do_action, close_current
|
|
||||||
mouse_right_click = close_all
|
|
||||||
|
|
||||||
# Experimental features that may or may not work correctly. Do not expect them
|
|
||||||
# to have a consistent behaviour across releases.
|
|
||||||
[experimental]
|
|
||||||
# Calculate the dpi to use on a per-monitor basis.
|
|
||||||
# If this setting is enabled the Xft.dpi value will be ignored and instead
|
|
||||||
# dunst will attempt to calculate an appropriate dpi value for each monitor
|
|
||||||
# using the resolution and physical size. This might be useful in setups
|
|
||||||
# where there are multiple screens with very different dpi values.
|
|
||||||
per_monitor_dpi = false
|
|
||||||
|
|
||||||
[log_notifs]
|
|
||||||
script = ~/.config/dunst/scripts/dunst_logger.sh
|
|
||||||
|
|
||||||
[urgency_low]
|
|
||||||
# IMPORTANT: colors have to be defined in quotation marks.
|
|
||||||
# Otherwise the "#" and following would be interpreted as a comment.
|
|
||||||
background = "#1A1B26"
|
|
||||||
foreground = "#A9B1D6"
|
|
||||||
highlight = "#A9B1D6"
|
|
||||||
timeout = 6
|
|
||||||
# Icon for notifications with low urgency, uncomment to enable
|
|
||||||
#default_icon = /path/to/icon
|
|
||||||
|
|
||||||
[urgency_normal]
|
|
||||||
background = "#1A1B26"
|
|
||||||
foreground = "#A9B1D6"
|
|
||||||
highlight = "#A9B1D6"
|
|
||||||
highlight-background = "#16161E"
|
|
||||||
timeout = 6
|
|
||||||
# Icon for notifications with normal urgency, uncomment to enable
|
|
||||||
#default_icon = /path/to/icon
|
|
||||||
|
|
||||||
[urgency_critical]
|
|
||||||
background = "#1A1B26"
|
|
||||||
foreground = "#A9B1D6"
|
|
||||||
highlight = "#A9B1D6"
|
|
||||||
timeout = 10
|
|
||||||
# Icon for notifications with critical urgency, uncomment to enable
|
|
||||||
#default_icon = /path/to/icon
|
|
||||||
|
|
||||||
# Every section that isn't one of the above is interpreted as a rules to
|
|
||||||
# override settings for certain messages.
|
|
||||||
#
|
|
||||||
# Messages can be matched by
|
|
||||||
# appname (discouraged, see desktop_entry)
|
|
||||||
# body
|
|
||||||
# category
|
|
||||||
# desktop_entry
|
|
||||||
# icon
|
|
||||||
# match_transient
|
|
||||||
# msg_urgency
|
|
||||||
# stack_tag
|
|
||||||
# summary
|
|
||||||
#
|
|
||||||
# and you can override the
|
|
||||||
# background
|
|
||||||
# foreground
|
|
||||||
# format
|
|
||||||
# frame_color
|
|
||||||
# fullscreen
|
|
||||||
# new_icon
|
|
||||||
# set_stack_tag
|
|
||||||
# set_transient
|
|
||||||
# set_category
|
|
||||||
# timeout
|
|
||||||
# urgency
|
|
||||||
# skip_display
|
|
||||||
# history_ignore
|
|
||||||
# action_name
|
|
||||||
# word_wrap
|
|
||||||
# ellipsize
|
|
||||||
# alignment
|
|
||||||
#
|
|
||||||
# Shell-like globbing will get expanded.
|
|
||||||
#
|
|
||||||
# Instead of the appname filter, it's recommended to use the desktop_entry filter.
|
|
||||||
# GLib based applications export their desktop-entry name. In comparison to the appname,
|
|
||||||
# the desktop-entry won't get localized.
|
|
||||||
#
|
|
||||||
# SCRIPTING
|
|
||||||
# You can specify a script that gets run when the rule matches by
|
|
||||||
# setting the "script" option.
|
|
||||||
# The script will be called as follows:
|
|
||||||
# script appname summary body icon urgency
|
|
||||||
# where urgency can be "LOW", "NORMAL" or "CRITICAL".
|
|
||||||
#
|
|
||||||
# NOTE: It might be helpful to run dunst -print in a terminal in order
|
|
||||||
# to find fitting options for rules.
|
|
||||||
|
|
||||||
# Disable the transient hint so that idle_threshold cannot be bypassed from the
|
|
||||||
# client
|
|
||||||
#[transient_disable]
|
|
||||||
# match_transient = yes
|
|
||||||
# set_transient = no
|
|
||||||
#
|
|
||||||
# Make the handling of transient notifications more strict by making them not
|
|
||||||
# be placed in history.
|
|
||||||
#[transient_history_ignore]
|
|
||||||
# match_transient = yes
|
|
||||||
# history_ignore = yes
|
|
||||||
|
|
||||||
# fullscreen values
|
|
||||||
# show: show the notifications, regardless if there is a fullscreen window opened
|
|
||||||
# delay: displays the new notification, if there is no fullscreen window active
|
|
||||||
# If the notification is already drawn, it won't get undrawn.
|
|
||||||
# pushback: same as delay, but when switching into fullscreen, the notification will get
|
|
||||||
# withdrawn from screen again and will get delayed like a new notification
|
|
||||||
#[fullscreen_delay_everything]
|
|
||||||
# fullscreen = delay
|
|
||||||
#[fullscreen_show_critical]
|
|
||||||
# msg_urgency = critical
|
|
||||||
# fullscreen = show
|
|
||||||
|
|
||||||
#[espeak]
|
|
||||||
# summary = "*"
|
|
||||||
# script = dunst_espeak.sh
|
|
||||||
|
|
||||||
#[script-test]
|
|
||||||
# summary = "*script*"
|
|
||||||
# script = dunst_test.sh
|
|
||||||
|
|
||||||
#[ignore]
|
|
||||||
# # This notification will not be displayed
|
|
||||||
# summary = "foobar"
|
|
||||||
# skip_display = true
|
|
||||||
|
|
||||||
#[history-ignore]
|
|
||||||
# # This notification will not be saved in history
|
|
||||||
# summary = "foobar"
|
|
||||||
# history_ignore = yes
|
|
||||||
|
|
||||||
#[skip-display]
|
|
||||||
# # This notification will not be displayed, but will be included in the history
|
|
||||||
# summary = "foobar"
|
|
||||||
# skip_display = yes
|
|
||||||
|
|
||||||
#[signed_on]
|
|
||||||
# appname = Pidgin
|
|
||||||
# summary = "*signed on*"
|
|
||||||
# urgency = low
|
|
||||||
#
|
|
||||||
#[signed_off]
|
|
||||||
# appname = Pidgin
|
|
||||||
# summary = *signed off*
|
|
||||||
# urgency = low
|
|
||||||
#
|
|
||||||
#[says]
|
|
||||||
# appname = Pidgin
|
|
||||||
# summary = *says*
|
|
||||||
# urgency = critical
|
|
||||||
#
|
|
||||||
#[twitter]
|
|
||||||
# appname = Pidgin
|
|
||||||
# summary = *twitter.com*
|
|
||||||
# urgency = normal
|
|
||||||
#
|
|
||||||
#[stack-volumes]
|
|
||||||
# appname = "some_volume_notifiers"
|
|
||||||
# set_stack_tag = "volume"
|
|
||||||
#
|
|
||||||
# vim: ft=cfg
|
|
||||||
@@ -1,440 +0,0 @@
|
|||||||
# See dunst(5) for all configuration options
|
|
||||||
|
|
||||||
[global]
|
|
||||||
### Display ###
|
|
||||||
|
|
||||||
# Which monitor should the notifications be displayed on.
|
|
||||||
monitor = 0
|
|
||||||
|
|
||||||
# Display notification on focused monitor. Possible modes are:
|
|
||||||
# mouse: follow mouse pointer
|
|
||||||
# keyboard: follow window with keyboard focus
|
|
||||||
# none: don't follow anything
|
|
||||||
#
|
|
||||||
# "keyboard" needs a window manager that exports the
|
|
||||||
# _NET_ACTIVE_WINDOW property.
|
|
||||||
# This should be the case for almost all modern window managers.
|
|
||||||
#
|
|
||||||
# If this option is set to mouse or keyboard, the monitor option
|
|
||||||
# will be ignored.
|
|
||||||
follow = none
|
|
||||||
|
|
||||||
### Geometry ###
|
|
||||||
|
|
||||||
# dynamic width from 0 to 300
|
|
||||||
# width = (0, 300)
|
|
||||||
# constant width of 300
|
|
||||||
width = (111, 444)
|
|
||||||
|
|
||||||
# The maximum height of a single notification, excluding the frame.
|
|
||||||
height = 222
|
|
||||||
|
|
||||||
# Position the notification in the top right corner
|
|
||||||
origin = top-right
|
|
||||||
|
|
||||||
# Offset from the origin
|
|
||||||
offset = 15x55
|
|
||||||
|
|
||||||
# Scale factor. It is auto-detected if value is 0.
|
|
||||||
scale = 0
|
|
||||||
|
|
||||||
# Maximum number of notification (0 means no limit)
|
|
||||||
notification_limit = 0
|
|
||||||
|
|
||||||
### Progress bar ###
|
|
||||||
|
|
||||||
# Turn on the progess bar. It appears when a progress hint is passed with
|
|
||||||
# for example dunstify -h int:value:12
|
|
||||||
progress_bar = true
|
|
||||||
|
|
||||||
# Set the progress bar height. This includes the frame, so make sure
|
|
||||||
# it's at least twice as big as the frame width.
|
|
||||||
progress_bar_height = 10
|
|
||||||
|
|
||||||
# Set the frame width of the progress bar
|
|
||||||
progress_bar_frame_width = 1
|
|
||||||
|
|
||||||
# Set the minimum width for the progress bar
|
|
||||||
progress_bar_min_width = 150
|
|
||||||
|
|
||||||
# Set the maximum width for the progress bar
|
|
||||||
progress_bar_max_width = 300
|
|
||||||
|
|
||||||
# Show how many messages are currently hidden (because of
|
|
||||||
# notification_limit).
|
|
||||||
indicate_hidden = yes
|
|
||||||
|
|
||||||
# The transparency of the window. Range: [0; 100].
|
|
||||||
# This option will only work if a compositing window manager is
|
|
||||||
# present (e.g. xcompmgr, compiz, etc.). (X11 only)
|
|
||||||
transparency = 0
|
|
||||||
|
|
||||||
# Draw a line of "separator_height" pixel height between two
|
|
||||||
# notifications.
|
|
||||||
# Set to 0 to disable.
|
|
||||||
separator_height = 5
|
|
||||||
|
|
||||||
# Padding between text and separator.
|
|
||||||
padding = 15
|
|
||||||
|
|
||||||
# Horizontal padding.
|
|
||||||
horizontal_padding = 15
|
|
||||||
|
|
||||||
# Padding between text and icon.
|
|
||||||
text_icon_padding = 0
|
|
||||||
|
|
||||||
# Defines width in pixels of frame around the notification window.
|
|
||||||
# Set to 0 to disable.
|
|
||||||
frame_width = 0
|
|
||||||
|
|
||||||
# Defines color of the frame around the notification window.
|
|
||||||
frame_color = "#16161E"
|
|
||||||
|
|
||||||
# Define a color for the separator.
|
|
||||||
# possible values are:
|
|
||||||
# * auto: dunst tries to find a color fitting to the background;
|
|
||||||
# * foreground: use the same color as the foreground;
|
|
||||||
# * frame: use the same color as the frame;
|
|
||||||
# * anything else will be interpreted as a X color.
|
|
||||||
separator_color = frame
|
|
||||||
|
|
||||||
# Sort messages by urgency.
|
|
||||||
sort = yes
|
|
||||||
|
|
||||||
# Don't remove messages, if the user is idle (no mouse or keyboard input)
|
|
||||||
# for longer than idle_threshold seconds.
|
|
||||||
# Set to 0 to disable.
|
|
||||||
# A client can set the 'transient' hint to bypass this. See the rules
|
|
||||||
# section for how to disable this if necessary
|
|
||||||
# idle_threshold = 120
|
|
||||||
|
|
||||||
### Text ###
|
|
||||||
|
|
||||||
font = Iosevka Medium Italic 10
|
|
||||||
|
|
||||||
# The spacing between lines. If the height is smaller than the
|
|
||||||
# font height, it will get raised to the font height.
|
|
||||||
line_height = 0
|
|
||||||
|
|
||||||
# Possible values are:
|
|
||||||
# full: Allow a small subset of html markup in notifications:
|
|
||||||
# <b>bold</b>
|
|
||||||
# <i>italic</i>
|
|
||||||
# <s>strikethrough</s>
|
|
||||||
# <u>underline</u>
|
|
||||||
#
|
|
||||||
# For a complete reference see
|
|
||||||
# <https://docs.gtk.org/Pango/pango_markup.html>.
|
|
||||||
#
|
|
||||||
# strip: This setting is provided for compatibility with some broken
|
|
||||||
# clients that send markup even though it's not enabled on the
|
|
||||||
# server. Dunst will try to strip the markup but the parsing is
|
|
||||||
# simplistic so using this option outside of matching rules for
|
|
||||||
# specific applications *IS GREATLY DISCOURAGED*.
|
|
||||||
#
|
|
||||||
# no: Disable markup parsing, incoming notifications will be treated as
|
|
||||||
# plain text. Dunst will not advertise that it has the body-markup
|
|
||||||
# capability if this is set as a global setting.
|
|
||||||
#
|
|
||||||
# It's important to note that markup inside the format option will be parsed
|
|
||||||
# regardless of what this is set to.
|
|
||||||
markup = full
|
|
||||||
|
|
||||||
# The format of the message. Possible variables are:
|
|
||||||
# %a appname
|
|
||||||
# %s summary
|
|
||||||
# %b body
|
|
||||||
# %i iconname (including its path)
|
|
||||||
# %I iconname (without its path)
|
|
||||||
# %p progress value if set ([ 0%] to [100%]) or nothing
|
|
||||||
# %n progress value if set without any extra characters
|
|
||||||
# %% Literal %
|
|
||||||
# Markup is allowed
|
|
||||||
format = "<b>%s</b>\n%b"
|
|
||||||
|
|
||||||
# Alignment of message text.
|
|
||||||
# Possible values are "left", "center" and "right".
|
|
||||||
alignment = center
|
|
||||||
|
|
||||||
# Vertical alignment of message text and icon.
|
|
||||||
# Possible values are "top", "center" and "bottom".
|
|
||||||
vertical_alignment = center
|
|
||||||
|
|
||||||
# Show age of message if message is older than show_age_threshold
|
|
||||||
# seconds.
|
|
||||||
# Set to -1 to disable.
|
|
||||||
show_age_threshold = 60
|
|
||||||
|
|
||||||
# Specify where to make an ellipsis in long lines.
|
|
||||||
# Possible values are "start", "middle" and "end".
|
|
||||||
ellipsize = middle
|
|
||||||
|
|
||||||
# Ignore newlines '\n' in notifications.
|
|
||||||
ignore_newline = yes
|
|
||||||
|
|
||||||
# Stack together notifications with the same content
|
|
||||||
stack_duplicates = true
|
|
||||||
|
|
||||||
# Hide the count of stacked notifications with the same content
|
|
||||||
hide_duplicate_count = false
|
|
||||||
|
|
||||||
# Display indicators for URLs (U) and actions (A).
|
|
||||||
show_indicators = no
|
|
||||||
|
|
||||||
### Icons ###
|
|
||||||
|
|
||||||
# Align icons left/right/off
|
|
||||||
icon_position = left
|
|
||||||
|
|
||||||
# Scale small icons up to this size, set to 0 to disable. Helpful
|
|
||||||
# for e.g. small files or high-dpi screens. In case of conflict,
|
|
||||||
# max_icon_size takes precedence over this.
|
|
||||||
icon_size = 48
|
|
||||||
|
|
||||||
# Scale larger icons down to this size, set to 0 to disable
|
|
||||||
max_icon_size = 80
|
|
||||||
|
|
||||||
# Paths to default icons.
|
|
||||||
icon_path = /usr/share/icons/Papirus-Dark/48x48/status/:/usr/share/icons/Papirus-Dark/48x48/devices/:/usr/share/icons/Papirus-Dark/48x48/apps
|
|
||||||
|
|
||||||
### History ###
|
|
||||||
|
|
||||||
# Should a notification popped up from history be sticky or timeout
|
|
||||||
# as if it would normally do.
|
|
||||||
sticky_history = yes
|
|
||||||
|
|
||||||
# Maximum amount of notifications kept in history
|
|
||||||
history_length = 20
|
|
||||||
|
|
||||||
### Misc/Advanced ###
|
|
||||||
|
|
||||||
# dmenu path.
|
|
||||||
dmenu = /usr/bin/dmenu -p dunst:
|
|
||||||
|
|
||||||
# Browser for opening urls in context menu.
|
|
||||||
browser = /usr/bin/firefox -new-tab
|
|
||||||
|
|
||||||
# Always run rule-defined scripts, even if the notification is suppressed
|
|
||||||
always_run_script = true
|
|
||||||
|
|
||||||
# Define the title of the windows spawned by dunst
|
|
||||||
title = Dunst
|
|
||||||
|
|
||||||
# Define the class of the windows spawned by dunst
|
|
||||||
class = Dunst
|
|
||||||
|
|
||||||
# Define the corner radius of the notification window
|
|
||||||
# in pixel size. If the radius is 0, you have no rounded
|
|
||||||
# corners.
|
|
||||||
# The radius will be automatically lowered if it exceeds half of the
|
|
||||||
# notification height to avoid clipping text and/or icons.
|
|
||||||
corner_radius = 5
|
|
||||||
|
|
||||||
# Ignore the dbus closeNotification message.
|
|
||||||
# Useful to enforce the timeout set by dunst configuration. Without this
|
|
||||||
# parameter, an application may close the notification sent before the
|
|
||||||
# user defined timeout.
|
|
||||||
ignore_dbusclose = false
|
|
||||||
|
|
||||||
### Wayland ###
|
|
||||||
# These settings are Wayland-specific. They have no effect when using X11
|
|
||||||
|
|
||||||
# Uncomment this if you want to let notications appear under fullscreen
|
|
||||||
# applications (default: overlay)
|
|
||||||
# layer = top
|
|
||||||
|
|
||||||
# Set this to true to use X11 output on Wayland.
|
|
||||||
force_xwayland = false
|
|
||||||
|
|
||||||
### Legacy
|
|
||||||
|
|
||||||
# Use the Xinerama extension instead of RandR for multi-monitor support.
|
|
||||||
# This setting is provided for compatibility with older nVidia drivers that
|
|
||||||
# do not support RandR and using it on systems that support RandR is highly
|
|
||||||
# discouraged.
|
|
||||||
#
|
|
||||||
# By enabling this setting dunst will not be able to detect when a monitor
|
|
||||||
# is connected or disconnected which might break follow mode if the screen
|
|
||||||
# layout changes.
|
|
||||||
force_xinerama = false
|
|
||||||
|
|
||||||
### mouse
|
|
||||||
|
|
||||||
# Defines list of actions for each mouse event
|
|
||||||
# Possible values are:
|
|
||||||
# * none: Don't do anything.
|
|
||||||
# * do_action: Invoke the action determined by the action_name rule. If there is no
|
|
||||||
# such action, open the context menu.
|
|
||||||
# * open_url: If the notification has exactly one url, open it. If there are multiple
|
|
||||||
# ones, open the context menu.
|
|
||||||
# * close_current: Close current notification.
|
|
||||||
# * close_all: Close all notifications.
|
|
||||||
# * context: Open context menu for the notification.
|
|
||||||
# * context_all: Open context menu for all notifications.
|
|
||||||
# These values can be strung together for each mouse event, and
|
|
||||||
# will be executed in sequence.
|
|
||||||
mouse_left_click = close_current
|
|
||||||
mouse_middle_click = do_action, close_current
|
|
||||||
mouse_right_click = close_all
|
|
||||||
|
|
||||||
# Experimental features that may or may not work correctly. Do not expect them
|
|
||||||
# to have a consistent behaviour across releases.
|
|
||||||
[experimental]
|
|
||||||
# Calculate the dpi to use on a per-monitor basis.
|
|
||||||
# If this setting is enabled the Xft.dpi value will be ignored and instead
|
|
||||||
# dunst will attempt to calculate an appropriate dpi value for each monitor
|
|
||||||
# using the resolution and physical size. This might be useful in setups
|
|
||||||
# where there are multiple screens with very different dpi values.
|
|
||||||
per_monitor_dpi = false
|
|
||||||
|
|
||||||
[log_notifs]
|
|
||||||
script = ~/.config/dunst/scripts/dunst_logger.sh
|
|
||||||
|
|
||||||
[urgency_low]
|
|
||||||
# IMPORTANT: colors have to be defined in quotation marks.
|
|
||||||
# Otherwise the "#" and following would be interpreted as a comment.
|
|
||||||
background = "#1A1B26"
|
|
||||||
foreground = "#A9B1D6"
|
|
||||||
highlight = "#A9B1D6"
|
|
||||||
timeout = 6
|
|
||||||
# Icon for notifications with low urgency, uncomment to enable
|
|
||||||
#default_icon = /path/to/icon
|
|
||||||
|
|
||||||
[urgency_normal]
|
|
||||||
background = "#1A1B26"
|
|
||||||
foreground = "#A9B1D6"
|
|
||||||
highlight = "#A9B1D6"
|
|
||||||
highlight-background = "#16161E"
|
|
||||||
timeout = 6
|
|
||||||
# Icon for notifications with normal urgency, uncomment to enable
|
|
||||||
#default_icon = /path/to/icon
|
|
||||||
|
|
||||||
[urgency_critical]
|
|
||||||
background = "#1A1B26"
|
|
||||||
foreground = "#A9B1D6"
|
|
||||||
highlight = "#A9B1D6"
|
|
||||||
timeout = 10
|
|
||||||
# Icon for notifications with critical urgency, uncomment to enable
|
|
||||||
#default_icon = /path/to/icon
|
|
||||||
|
|
||||||
# Every section that isn't one of the above is interpreted as a rules to
|
|
||||||
# override settings for certain messages.
|
|
||||||
#
|
|
||||||
# Messages can be matched by
|
|
||||||
# appname (discouraged, see desktop_entry)
|
|
||||||
# body
|
|
||||||
# category
|
|
||||||
# desktop_entry
|
|
||||||
# icon
|
|
||||||
# match_transient
|
|
||||||
# msg_urgency
|
|
||||||
# stack_tag
|
|
||||||
# summary
|
|
||||||
#
|
|
||||||
# and you can override the
|
|
||||||
# background
|
|
||||||
# foreground
|
|
||||||
# format
|
|
||||||
# frame_color
|
|
||||||
# fullscreen
|
|
||||||
# new_icon
|
|
||||||
# set_stack_tag
|
|
||||||
# set_transient
|
|
||||||
# set_category
|
|
||||||
# timeout
|
|
||||||
# urgency
|
|
||||||
# skip_display
|
|
||||||
# history_ignore
|
|
||||||
# action_name
|
|
||||||
# word_wrap
|
|
||||||
# ellipsize
|
|
||||||
# alignment
|
|
||||||
#
|
|
||||||
# Shell-like globbing will get expanded.
|
|
||||||
#
|
|
||||||
# Instead of the appname filter, it's recommended to use the desktop_entry filter.
|
|
||||||
# GLib based applications export their desktop-entry name. In comparison to the appname,
|
|
||||||
# the desktop-entry won't get localized.
|
|
||||||
#
|
|
||||||
# SCRIPTING
|
|
||||||
# You can specify a script that gets run when the rule matches by
|
|
||||||
# setting the "script" option.
|
|
||||||
# The script will be called as follows:
|
|
||||||
# script appname summary body icon urgency
|
|
||||||
# where urgency can be "LOW", "NORMAL" or "CRITICAL".
|
|
||||||
#
|
|
||||||
# NOTE: It might be helpful to run dunst -print in a terminal in order
|
|
||||||
# to find fitting options for rules.
|
|
||||||
|
|
||||||
# Disable the transient hint so that idle_threshold cannot be bypassed from the
|
|
||||||
# client
|
|
||||||
#[transient_disable]
|
|
||||||
# match_transient = yes
|
|
||||||
# set_transient = no
|
|
||||||
#
|
|
||||||
# Make the handling of transient notifications more strict by making them not
|
|
||||||
# be placed in history.
|
|
||||||
#[transient_history_ignore]
|
|
||||||
# match_transient = yes
|
|
||||||
# history_ignore = yes
|
|
||||||
|
|
||||||
# fullscreen values
|
|
||||||
# show: show the notifications, regardless if there is a fullscreen window opened
|
|
||||||
# delay: displays the new notification, if there is no fullscreen window active
|
|
||||||
# If the notification is already drawn, it won't get undrawn.
|
|
||||||
# pushback: same as delay, but when switching into fullscreen, the notification will get
|
|
||||||
# withdrawn from screen again and will get delayed like a new notification
|
|
||||||
#[fullscreen_delay_everything]
|
|
||||||
# fullscreen = delay
|
|
||||||
#[fullscreen_show_critical]
|
|
||||||
# msg_urgency = critical
|
|
||||||
# fullscreen = show
|
|
||||||
|
|
||||||
#[espeak]
|
|
||||||
# summary = "*"
|
|
||||||
# script = dunst_espeak.sh
|
|
||||||
|
|
||||||
#[script-test]
|
|
||||||
# summary = "*script*"
|
|
||||||
# script = dunst_test.sh
|
|
||||||
|
|
||||||
#[ignore]
|
|
||||||
# # This notification will not be displayed
|
|
||||||
# summary = "foobar"
|
|
||||||
# skip_display = true
|
|
||||||
|
|
||||||
#[history-ignore]
|
|
||||||
# # This notification will not be saved in history
|
|
||||||
# summary = "foobar"
|
|
||||||
# history_ignore = yes
|
|
||||||
|
|
||||||
#[skip-display]
|
|
||||||
# # This notification will not be displayed, but will be included in the history
|
|
||||||
# summary = "foobar"
|
|
||||||
# skip_display = yes
|
|
||||||
|
|
||||||
#[signed_on]
|
|
||||||
# appname = Pidgin
|
|
||||||
# summary = "*signed on*"
|
|
||||||
# urgency = low
|
|
||||||
#
|
|
||||||
#[signed_off]
|
|
||||||
# appname = Pidgin
|
|
||||||
# summary = *signed off*
|
|
||||||
# urgency = low
|
|
||||||
#
|
|
||||||
#[says]
|
|
||||||
# appname = Pidgin
|
|
||||||
# summary = *says*
|
|
||||||
# urgency = critical
|
|
||||||
#
|
|
||||||
#[twitter]
|
|
||||||
# appname = Pidgin
|
|
||||||
# summary = *twitter.com*
|
|
||||||
# urgency = normal
|
|
||||||
#
|
|
||||||
#[stack-volumes]
|
|
||||||
# appname = "some_volume_notifiers"
|
|
||||||
# set_stack_tag = "volume"
|
|
||||||
#
|
|
||||||
# vim: ft=cfg
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
description = "Dunst Config";
|
|
||||||
|
|
||||||
inputs = {
|
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
||||||
};
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... }@inputs:
|
|
||||||
let
|
|
||||||
system = "x86_64-linux";
|
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
|
||||||
in {
|
|
||||||
packages.${system} = {
|
|
||||||
default = pkgs.dunst.overrideAttrs (oldAttrs: {
|
|
||||||
configFile = ./dunstrc;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#eceff4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg>
|
|
||||||
|
Before Width: | Height: | Size: 645 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#eceff4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-volume-2"><polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><path d="M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 354 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#eceff4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-volume"><polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon></svg>
|
|
||||||
|
Before Width: | Height: | Size: 275 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#eceff4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-volume-1"><polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><path d="M15.54 8.46a5 5 0 0 1 0 7.07"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 323 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#BF616A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-volume-x"><polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><line x1="23" y1="9" x2="17" y2="15"></line><line x1="17" y1="9" x2="23" y2="15"></line></svg>
|
|
||||||
|
Before Width: | Height: | Size: 365 B |
@@ -1,39 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
#set -euo pipefail
|
|
||||||
|
|
||||||
# Because certain programs like to insert their own newlines and fuck up my format (im looking at you thunderbird)
|
|
||||||
# we need to crunch each input to ensure that each component is its own line in the log file
|
|
||||||
crunch_appname=$(echo "$1" | sed '/^$/d')
|
|
||||||
crunch_summary=$(echo "$2" | sed '/^$/d' | xargs)
|
|
||||||
crunch_body=$(echo "$3" | sed '/^$/d' | xargs)
|
|
||||||
crunch_icon=$(echo "$4" | sed '/^$/d')
|
|
||||||
crunch_urgency=$(echo "$5" | sed '/^$/d')
|
|
||||||
timestamp=$(date +"%I:%M %p")
|
|
||||||
|
|
||||||
# filter stuff ans add custom icons if you want
|
|
||||||
|
|
||||||
# e.g.
|
|
||||||
# notify-send -u urgency "summary" "body" -i "icon"
|
|
||||||
#
|
|
||||||
# this will give
|
|
||||||
# app-name - notif-send
|
|
||||||
# urgency - upgency
|
|
||||||
# summary - summary
|
|
||||||
# body - body
|
|
||||||
# icon - icon
|
|
||||||
|
|
||||||
# Rules for notifs that send their icons over the wire (w/o an actual path)
|
|
||||||
if [[ "$crunch_appname" == "Spotify" ]]; then
|
|
||||||
random_name=$(mktemp --suffix ".png")
|
|
||||||
artlink=$(playerctl metadata mpris:artUrl | sed -e 's/open.spotify.com/i.scdn.co/g')
|
|
||||||
curl -s "$artlink" -o "$random_name"
|
|
||||||
crunch_icon=$random_name
|
|
||||||
elif [[ "$crunch_appname" == "VLC media player" ]]; then
|
|
||||||
crunch_icon="vlc"
|
|
||||||
elif [[ "$crunch_appname" == "Calendar" ]] || [[ "$crunch_appname" == "Volume" ]] || [[ "$crunch_appname" == "Brightness" ]] || [[ "$crunch_appname" == "notify-send" ]]; then
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo -en "$timestamp\n$crunch_urgency\n$crunch_icon\n$crunch_body\n$crunch_summary\n$crunch_appname\n" >>/tmp/dunstlog
|
|
||||||
|
|
||||||
#echo -en "$crunch_appname\n$crunch_summary\n$crunch_body\n$crunch_icon\n$crunch_urgency\x0f" >> /tmp/dunstlog
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
{
|
|
||||||
description = "Hyprland Package Suite";
|
|
||||||
|
|
||||||
inputs = {
|
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
||||||
};
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... }@inputs:
|
|
||||||
let
|
|
||||||
system = "x86_64-linux";
|
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
|
||||||
in {
|
|
||||||
packages.${system} = {
|
|
||||||
default = pkgs.stdenv.mkDerivation {
|
|
||||||
name = "hyprland-suite";
|
|
||||||
src = pkgs.hyprland.src;
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
pkgs.hyprpaper
|
|
||||||
pkgs.hyprland-workspaces
|
|
||||||
pkgs.hyprpicker
|
|
||||||
pkgs.xdg-desktop-portal
|
|
||||||
pkgs.xdg-desktop-portal-hyprland
|
|
||||||
];
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
make install PREFIX=$out
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with pkgs.lib; {
|
|
||||||
description = "A package containing hyprland along with some utilities that were made for it";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ pagedMov ];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,147 +0,0 @@
|
|||||||
# hyprland config
|
|
||||||
|
|
||||||
#test comment
|
|
||||||
# monitors
|
|
||||||
monitor=DP-1,1920x1080@144,1920x0,1
|
|
||||||
monitor=HDMI-A-1,1920x1080@60,0x0,1
|
|
||||||
|
|
||||||
# workspaces
|
|
||||||
workspace = 1,monitor:HDMI-A-1, default:true, persistent:true
|
|
||||||
workspace = 2,monitor:HDMI-A-1,default:true,persistent:true
|
|
||||||
workspace = 3,monitor:HDMI-A-1,persistent:true
|
|
||||||
workspace = 4,monitor:DP-1,persistent:true
|
|
||||||
workspace = 5,monitor:DP-1,persistent:true
|
|
||||||
workspace = 6,monitor:DP-1,persistent:true
|
|
||||||
workspace = special:console,on-created-empty:[float;size 45% 45%;move 1% 4%] kitty
|
|
||||||
|
|
||||||
# autoexec
|
|
||||||
exec-once=waybar
|
|
||||||
exec-once=pulseaudio
|
|
||||||
exec-once=dunst
|
|
||||||
exec-once=hyprpaper
|
|
||||||
exec-once=dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
|
||||||
exec-once=/sbin/pypr
|
|
||||||
exec-once=aplay /home/pagedmov/sound/sys/login.wav
|
|
||||||
# window rules
|
|
||||||
windowrule = noshadow, ^(.*)$
|
|
||||||
windowrule = opacity 1 0.9, ^(kitty)$
|
|
||||||
|
|
||||||
# environment variables
|
|
||||||
$terminal = kitty
|
|
||||||
$filemanager = kitty ranger
|
|
||||||
$menu = rofi -show drun
|
|
||||||
$screenshot = grimblast copy area && aplay /home/pagedmov/sound/sys/screenshot.wav
|
|
||||||
$browser = firefox
|
|
||||||
env = qt_qpa_platformtheme,qt6ct
|
|
||||||
env = XDG_CURRENT_DESKTOP,hyprland
|
|
||||||
env = HYPRCURSOR_THEME,rose-pine-hyprcursor
|
|
||||||
env = HYPRCURSOR_SIZE,24
|
|
||||||
env = SOUNDS_ENABLED,1
|
|
||||||
|
|
||||||
# settings
|
|
||||||
input {
|
|
||||||
kb_layout = us
|
|
||||||
follow_mouse = 1
|
|
||||||
sensitivity = 0
|
|
||||||
accel_profile = flat
|
|
||||||
force_no_accel = 1
|
|
||||||
}
|
|
||||||
general {
|
|
||||||
gaps_in = 0
|
|
||||||
gaps_out = 20
|
|
||||||
border_size = 6
|
|
||||||
col.active_border = rgb(4C5945)
|
|
||||||
col.inactive_border = rgb(4C5945)
|
|
||||||
layout = dwindle
|
|
||||||
allow_tearing = false
|
|
||||||
}
|
|
||||||
decoration {
|
|
||||||
dim_special = 0.2
|
|
||||||
}
|
|
||||||
animations {
|
|
||||||
enabled = yes
|
|
||||||
bezier = mybezier, 0.05, 0.9, 0.1, 1.05
|
|
||||||
animation = windows, 1, 7, mybezier
|
|
||||||
animation = border, 1, 10, default
|
|
||||||
animation = borderangle, 1, 8, default
|
|
||||||
animation = fade, 1, 7, default
|
|
||||||
animation = workspaces, 1, 6, default
|
|
||||||
}
|
|
||||||
dwindle {
|
|
||||||
pseudotile = yes
|
|
||||||
preserve_split = yes
|
|
||||||
}
|
|
||||||
misc {
|
|
||||||
force_default_wallpaper = 1
|
|
||||||
}
|
|
||||||
plugin {
|
|
||||||
hyprbars {
|
|
||||||
bar_color = rgb(4c5945)
|
|
||||||
bar_height = 20
|
|
||||||
bar_text_font = "Taxon Medium"
|
|
||||||
bar_text_align = left
|
|
||||||
bar_text_size = 11
|
|
||||||
bar_part_of_window = true
|
|
||||||
bar_precedence_over_border = true
|
|
||||||
|
|
||||||
hyprbars-button = rgb(4C5945), 22, , hyprctl dispatch killactive
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
# bindings
|
|
||||||
$mainmod = super
|
|
||||||
bind = $mainmod, up, exec, pactl set-sink-volume @default_sink@ +10%
|
|
||||||
bind = $mainmod, down, exec, pactl set-sink-volume @default_sink@ -10%
|
|
||||||
bind = $mainmod, print, exec, grimblast copy area
|
|
||||||
bind = $mainmod, a, exec, $browser
|
|
||||||
bind = $mainmod, q, exec, $terminal --title Kitty
|
|
||||||
bind = $mainmod, d, exec, /home/pagedmov/coding/scripts/switchmon.sh
|
|
||||||
bind = $mainmod, c, killactive,
|
|
||||||
bind = $mainmod shift, q, exit,
|
|
||||||
bind = $mainmod, m, exec, $menu
|
|
||||||
bind = $mainmod, e, exec, $filemanager
|
|
||||||
bind = $mainmod, r, exec, neovide
|
|
||||||
bind = $mainmod, p, pseudo, # dwindle
|
|
||||||
bind = $mainmod, b, togglesplit, # dwindle
|
|
||||||
bind = $mainmod, f, togglefloating
|
|
||||||
bind = $mainmod, g, fullscreen
|
|
||||||
bind = $mainmod, home, exec, /home/pagedmov/scripts/home.sh
|
|
||||||
bind = $mainmod, h, movefocus, l
|
|
||||||
bind = $mainmod, l, movefocus, r
|
|
||||||
bind = $mainmod, k, movefocus, u
|
|
||||||
bind = $mainmod, j, movefocus, d
|
|
||||||
bind = $mainmod, 1, exec, hyprctl "dispatch workspace 1"
|
|
||||||
bind = $mainmod, 2, exec, hyprctl "dispatch workspace 2"
|
|
||||||
bind = $mainmod, 3, exec, hyprctl "dispatch workspace 3"
|
|
||||||
bind = $mainmod, 4, exec, hyprctl "dispatch workspace 4"
|
|
||||||
bind = $mainmod, 5, exec, hyprctl "dispatch workspace 5"
|
|
||||||
bind = $mainmod, 6, exec, hyprctl "dispatch workspace 6"
|
|
||||||
bind = $mainmod, 7, exec, hyprctl "dispatch workspace 7"
|
|
||||||
bind = $mainmod, 8, exec, hyprctl "dispatch workspace 8"
|
|
||||||
bind = $mainmod, 9, exec, hyprctl "dispatch workspace 9"
|
|
||||||
bind = $mainmod, 0, exec, hyprctl "dispatch workspace 10"
|
|
||||||
bind = $mainmod alt, g, togglegroup
|
|
||||||
bind = $mainmod alt, h, changegroupactive, b
|
|
||||||
bind = $mainmod alt, l, changegroupactive, f
|
|
||||||
bind = $mainmod shift, h, movewindoworgroup, l
|
|
||||||
bind = $mainmod shift, l, movewindoworgroup, r
|
|
||||||
bind = $mainmod shift, k, movewindoworgroup, u
|
|
||||||
bind = $mainmod shift, j, movewindoworgroup, d
|
|
||||||
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
|
|
||||||
bind = $mainmod, s, togglespecialworkspace, magic
|
|
||||||
bind = $mainmod shift, s, movetoworkspace, special:magic
|
|
||||||
bind = alt, grave, togglespecialworkspace, console
|
|
||||||
bind = $mainmod, mouse_down, workspace, e+1
|
|
||||||
bind = $mainmod, mouse_up, workspace, e-1
|
|
||||||
bindm = $mainmod, mouse:272, movewindow
|
|
||||||
bindm = $mainmod, mouse:273, resizewindow
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
preload = ~/Pictures/Wallpapers/brokenfacegreen.png
|
|
||||||
|
|
||||||
wallpaper = DP-1,~/Pictures/Wallpapers/brokenfacegreen.png
|
|
||||||
wallpaper = HDMI-A-1,~/Pictures/Wallpapers/brokenfacegreen.png
|
|
||||||
splash = false
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
[pyprland]
|
|
||||||
plugins = [
|
|
||||||
"scratchpads"
|
|
||||||
]
|
|
||||||
|
|
||||||
[scratchpads.wiki]
|
|
||||||
command = "kitty nvim /home/pagedmov/vimwiki/index.wiki"
|
|
||||||
class = "wiki"
|
|
||||||
size = "30% 30%"
|
|
||||||
animation = "fromTop"
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
2 6 DP-1 HDMI-A-1
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
{
|
|
||||||
"nodes": {
|
|
||||||
"nixpkgs": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1726937504,
|
|
||||||
"narHash": "sha256-bvGoiQBvponpZh8ClUcmJ6QnsNKw0EMrCQJARK3bI1c=",
|
|
||||||
"owner": "nixos",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "9357f4f23713673f310988025d9dc261c20e70c6",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nixos",
|
|
||||||
"ref": "nixos-unstable",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": "nixpkgs"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": "root",
|
|
||||||
"version": 7
|
|
||||||
}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
{
|
|
||||||
description = "Kitty Configuration";
|
|
||||||
|
|
||||||
inputs = {
|
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
||||||
};
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... }@inputs:
|
|
||||||
let
|
|
||||||
system = "x86_64-linux";
|
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
|
||||||
in {
|
|
||||||
packages.${system} = {
|
|
||||||
default = pkgs.kitty.overrideAttrs (oldAttrs: {
|
|
||||||
configFile = ./kitty.conf;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
devShells.default = pkgs.mkShell {
|
|
||||||
buildInputs = [ pkgs.kitty ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
enable_audio_bell no
|
|
||||||
command_on_bell aplay /home/pagedmov/sound/sys/bell.wav
|
|
||||||
|
|
||||||
allow_remote_control yes
|
|
||||||
|
|
||||||
include theme.conf
|
|
||||||
|
|
||||||
font_family Jetbrains Mono NF
|
|
||||||
font_size 11
|
|
||||||
|
|
||||||
disable_ligatures never
|
|
||||||
|
|
||||||
url_color #fff
|
|
||||||
|
|
||||||
url_style curly
|
|
||||||
|
|
||||||
shell zsh
|
|
||||||
|
|
||||||
confirm_os_window_close 0
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
./themes/themes/Afterglow.conf
|
|
||||||
@@ -1,111 +0,0 @@
|
|||||||
{
|
|
||||||
"files": [
|
|
||||||
"README.md"
|
|
||||||
],
|
|
||||||
"badgeTemplate": "[](#contributors)",
|
|
||||||
"contributorTemplate": "<a href=\"<%= contributor.profile %>\"><b><%= contributor.name %></b></a><br /><%= contributions %>",
|
|
||||||
"imageSize": 100,
|
|
||||||
"commit": false,
|
|
||||||
"contributors": [
|
|
||||||
{
|
|
||||||
"login": "scopatz",
|
|
||||||
"name": "Anthony Scopatz",
|
|
||||||
"avatar_url": "https://avatars2.githubusercontent.com/u/320553?v=4",
|
|
||||||
"profile": "http://www.scopatz.com",
|
|
||||||
"contributions": [
|
|
||||||
"doc"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"login": "orangecoloured",
|
|
||||||
"name": "RCKT",
|
|
||||||
"avatar_url": "https://avatars3.githubusercontent.com/u/3314891?v=4",
|
|
||||||
"profile": "https://rckt.cc",
|
|
||||||
"contributions": [
|
|
||||||
"theme"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"login": "varmanishant",
|
|
||||||
"name": "varmanishant",
|
|
||||||
"avatar_url": "https://avatars1.githubusercontent.com/u/4084912?v=4",
|
|
||||||
"profile": "https://github.com/varmanishant",
|
|
||||||
"contributions": [
|
|
||||||
"theme"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"login": "rlerdorf",
|
|
||||||
"name": "Rasmus Lerdorf",
|
|
||||||
"avatar_url": "https://avatars3.githubusercontent.com/u/54641?v=4",
|
|
||||||
"profile": "https://github.com/rlerdorf",
|
|
||||||
"contributions": [
|
|
||||||
"bug",
|
|
||||||
"ideas"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"login": "Luflosi",
|
|
||||||
"name": "Luflosi",
|
|
||||||
"avatar_url": "https://avatars1.githubusercontent.com/u/15217907?v=4",
|
|
||||||
"profile": "https://github.com/Luflosi",
|
|
||||||
"contributions": [
|
|
||||||
"fix",
|
|
||||||
"question",
|
|
||||||
"doc"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"login": "connorholyday",
|
|
||||||
"name": "Connor Holyday",
|
|
||||||
"avatar_url": "https://avatars1.githubusercontent.com/u/4559119?v=4",
|
|
||||||
"profile": "https://holyday.me",
|
|
||||||
"contributions": [
|
|
||||||
"fix"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"login": "BlueDrink9",
|
|
||||||
"name": "BlueDrink9",
|
|
||||||
"avatar_url": "https://avatars3.githubusercontent.com/u/26474254?v=4",
|
|
||||||
"profile": "https://github.com/BlueDrink9",
|
|
||||||
"contributions": [
|
|
||||||
"bug"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"login": "brujoand",
|
|
||||||
"name": "Anders Brujordet",
|
|
||||||
"avatar_url": "https://avatars1.githubusercontent.com/u/124421?v=4",
|
|
||||||
"profile": "https://github.com/brujoand",
|
|
||||||
"contributions": [
|
|
||||||
"theme"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"login": "rjshrjndrn",
|
|
||||||
"name": "Rajesh Rajendran",
|
|
||||||
"avatar_url": "https://avatars3.githubusercontent.com/u/2563385?v=4",
|
|
||||||
"profile": "http://www.hackouts.com",
|
|
||||||
"contributions": [
|
|
||||||
"fix"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"types": {
|
|
||||||
"theme": {
|
|
||||||
"symbol": "😻",
|
|
||||||
"description": "New theme added to the collection"
|
|
||||||
},
|
|
||||||
"fix": {
|
|
||||||
"symbol": "🛠️",
|
|
||||||
"description": "Fixed a theme"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"contributorsPerLine": 7,
|
|
||||||
"projectName": "kitty-themes",
|
|
||||||
"projectOwner": "dexpota",
|
|
||||||
"repoType": "github",
|
|
||||||
"repoHost": "https://github.com",
|
|
||||||
"commitConvention": "none"
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #f7f7f7
|
|
||||||
foreground #494542
|
|
||||||
cursor #494542
|
|
||||||
selection_background #a4a1a1
|
|
||||||
color0 #090200
|
|
||||||
color8 #5b5754
|
|
||||||
color1 #da2c20
|
|
||||||
color9 #e8bacf
|
|
||||||
color2 #00a152
|
|
||||||
color10 #3a3332
|
|
||||||
color3 #fcec02
|
|
||||||
color11 #494542
|
|
||||||
color4 #00a0e4
|
|
||||||
color12 #7f7c7b
|
|
||||||
color5 #a06994
|
|
||||||
color13 #d6d4d3
|
|
||||||
color6 #b5e4f4
|
|
||||||
color14 #ccab53
|
|
||||||
color7 #a4a1a1
|
|
||||||
color15 #f7f7f7
|
|
||||||
selection_foreground #f7f7f7
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #090200
|
|
||||||
foreground #a4a1a1
|
|
||||||
cursor #a4a1a1
|
|
||||||
selection_background #494542
|
|
||||||
color0 #090200
|
|
||||||
color8 #5b5754
|
|
||||||
color1 #da2c20
|
|
||||||
color9 #e8bacf
|
|
||||||
color2 #00a152
|
|
||||||
color10 #3a3332
|
|
||||||
color3 #fcec02
|
|
||||||
color11 #494542
|
|
||||||
color4 #00a0e4
|
|
||||||
color12 #7f7c7b
|
|
||||||
color5 #a06994
|
|
||||||
color13 #d6d4d3
|
|
||||||
color6 #b5e4f4
|
|
||||||
color14 #ccab53
|
|
||||||
color7 #a4a1a1
|
|
||||||
color15 #f7f7f7
|
|
||||||
selection_foreground #090200
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #1e1c44
|
|
||||||
foreground #f8dbc0
|
|
||||||
cursor #eebf37
|
|
||||||
selection_background #6f6a4e
|
|
||||||
color0 #050404
|
|
||||||
color8 #4e7bbf
|
|
||||||
color1 #bc0013
|
|
||||||
color9 #fc5e59
|
|
||||||
color2 #49b117
|
|
||||||
color10 #9dff6e
|
|
||||||
color3 #e6741d
|
|
||||||
color11 #efc11a
|
|
||||||
color4 #0f49c6
|
|
||||||
color12 #1896c6
|
|
||||||
color5 #665992
|
|
||||||
color13 #9a5952
|
|
||||||
color6 #6fa497
|
|
||||||
color14 #c8f9f3
|
|
||||||
color7 #f8dbc0
|
|
||||||
color15 #f5f4fb
|
|
||||||
selection_foreground #1e1c44
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #202020
|
|
||||||
foreground #d0d0d0
|
|
||||||
cursor #d0d0d0
|
|
||||||
selection_background #303030
|
|
||||||
color0 #151515
|
|
||||||
color8 #505050
|
|
||||||
color1 #ac4142
|
|
||||||
color9 #ac4142
|
|
||||||
color2 #7e8d50
|
|
||||||
color10 #7e8d50
|
|
||||||
color3 #e5b566
|
|
||||||
color11 #e5b566
|
|
||||||
color4 #6c99ba
|
|
||||||
color12 #6c99ba
|
|
||||||
color5 #9e4e85
|
|
||||||
color13 #9e4e85
|
|
||||||
color6 #7dd5cf
|
|
||||||
color14 #7dd5cf
|
|
||||||
color7 #d0d0d0
|
|
||||||
color15 #f5f5f5
|
|
||||||
selection_foreground #202020
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #0f160f
|
|
||||||
foreground #637d75
|
|
||||||
cursor #73f990
|
|
||||||
selection_background #1d4025
|
|
||||||
color0 #112615
|
|
||||||
color8 #3c4711
|
|
||||||
color1 #7f2b26
|
|
||||||
color9 #df8008
|
|
||||||
color2 #2f7e25
|
|
||||||
color10 #18e000
|
|
||||||
color3 #707f23
|
|
||||||
color11 #bde000
|
|
||||||
color4 #2f697f
|
|
||||||
color12 #00a9df
|
|
||||||
color5 #47577e
|
|
||||||
color13 #0058df
|
|
||||||
color6 #317f76
|
|
||||||
color14 #00dfc3
|
|
||||||
color7 #647d75
|
|
||||||
color15 #73f990
|
|
||||||
selection_foreground #0f160f
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #222330
|
|
||||||
foreground #cef3ff
|
|
||||||
cursor #ffffff
|
|
||||||
selection_background #44475a
|
|
||||||
color0 #000000
|
|
||||||
color8 #545454
|
|
||||||
color1 #ff5555
|
|
||||||
color9 #ff5454
|
|
||||||
color2 #fa0074
|
|
||||||
color10 #50fa7b
|
|
||||||
color3 #7f0a1f
|
|
||||||
color11 #f0fa8b
|
|
||||||
color4 #3282ff
|
|
||||||
color12 #1200f8
|
|
||||||
color5 #1b3cff
|
|
||||||
color13 #ff78c5
|
|
||||||
color6 #0037fc
|
|
||||||
color14 #8ae9fc
|
|
||||||
color7 #bbbbbb
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #222330
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# Apprentice by Romain Lafourcade, https://github.com/romainl
|
|
||||||
# This work is licensed under the terms of the MIT license.
|
|
||||||
# For a copy, see https://opensource.org/licenses/MIT.
|
|
||||||
|
|
||||||
cursor #c7c7c7
|
|
||||||
cursor_text_color #feffff
|
|
||||||
selection_foreground #3e3e3e
|
|
||||||
selection_background #c1ddff
|
|
||||||
foreground #c8c8c8
|
|
||||||
background #323232
|
|
||||||
color0 #252525
|
|
||||||
color8 #555555
|
|
||||||
color1 #be7472
|
|
||||||
color9 #ff9900
|
|
||||||
color2 #709772
|
|
||||||
color10 #97bb98
|
|
||||||
color3 #989772
|
|
||||||
color11 #fefdbc
|
|
||||||
color4 #7199bc
|
|
||||||
color12 #9fbdde
|
|
||||||
color5 #727399
|
|
||||||
color13 #989abc
|
|
||||||
color6 #719899
|
|
||||||
color14 #6fbbbc
|
|
||||||
color7 #7f7f7f
|
|
||||||
color15 #feffff
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #0d0f18
|
|
||||||
foreground #fffaf3
|
|
||||||
cursor #ff0017
|
|
||||||
selection_background #002a3a
|
|
||||||
color0 #222222
|
|
||||||
color8 #444444
|
|
||||||
color1 #ff000f
|
|
||||||
color9 #ff273f
|
|
||||||
color2 #8ce00a
|
|
||||||
color10 #abe05a
|
|
||||||
color3 #ffb900
|
|
||||||
color11 #ffd141
|
|
||||||
color4 #008df8
|
|
||||||
color12 #0092ff
|
|
||||||
color5 #6c43a5
|
|
||||||
color13 #9a5feb
|
|
||||||
color6 #00d7eb
|
|
||||||
color14 #67ffef
|
|
||||||
color7 #ffffff
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #0d0f18
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #1c1c1c
|
|
||||||
foreground #ddeedd
|
|
||||||
cursor #e2bbef
|
|
||||||
selection_background #4d4d4d
|
|
||||||
color0 #3d352a
|
|
||||||
color8 #554444
|
|
||||||
color1 #cd5c5c
|
|
||||||
color9 #cc5533
|
|
||||||
color2 #86af80
|
|
||||||
color10 #88aa22
|
|
||||||
color3 #e8ae5b
|
|
||||||
color11 #ffa75d
|
|
||||||
color4 #6495ed
|
|
||||||
color12 #87ceeb
|
|
||||||
color5 #deb887
|
|
||||||
color13 #996600
|
|
||||||
color6 #b0c4de
|
|
||||||
color14 #b0c4de
|
|
||||||
color7 #bbaa99
|
|
||||||
color15 #ddccbb
|
|
||||||
selection_foreground #1c1c1c
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #202745
|
|
||||||
foreground #969cb3
|
|
||||||
cursor #969cb3
|
|
||||||
selection_background #5e6686
|
|
||||||
color0 #202745
|
|
||||||
color8 #6a7394
|
|
||||||
color1 #c84821
|
|
||||||
color9 #c76a28
|
|
||||||
color2 #ab9639
|
|
||||||
color10 #283256
|
|
||||||
color3 #c08a2f
|
|
||||||
color11 #5e6686
|
|
||||||
color4 #3d8ed0
|
|
||||||
color12 #898ea3
|
|
||||||
color5 #6678cc
|
|
||||||
color13 #dee1f0
|
|
||||||
color6 #21a1c8
|
|
||||||
color14 #9c6279
|
|
||||||
color7 #969cb3
|
|
||||||
color15 #f4f7ff
|
|
||||||
selection_foreground #202745
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #161718
|
|
||||||
foreground #c4c8c5
|
|
||||||
cursor #d0d0d0
|
|
||||||
selection_background #444444
|
|
||||||
color0 #000000
|
|
||||||
color8 #000000
|
|
||||||
color1 #fc5ef0
|
|
||||||
color9 #fc5ef0
|
|
||||||
color2 #86c38a
|
|
||||||
color10 #94f936
|
|
||||||
color3 #ffd6b1
|
|
||||||
color11 #f5ffa7
|
|
||||||
color4 #85befd
|
|
||||||
color12 #95cbfe
|
|
||||||
color5 #b9b5fc
|
|
||||||
color13 #b9b5fc
|
|
||||||
color6 #85befd
|
|
||||||
color14 #85befd
|
|
||||||
color7 #dfdfdf
|
|
||||||
color15 #dfdfdf
|
|
||||||
selection_foreground #161718
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #f8f8f8
|
|
||||||
foreground #2a2b33
|
|
||||||
cursor #bbbbbb
|
|
||||||
selection_background #ececec
|
|
||||||
color0 #000000
|
|
||||||
color8 #000000
|
|
||||||
color1 #de3d35
|
|
||||||
color9 #de3d35
|
|
||||||
color2 #3e953a
|
|
||||||
color10 #3e953a
|
|
||||||
color3 #d2b67b
|
|
||||||
color11 #d2b67b
|
|
||||||
color4 #2f5af3
|
|
||||||
color12 #2f5af3
|
|
||||||
color5 #950095
|
|
||||||
color13 #a00095
|
|
||||||
color6 #3e953a
|
|
||||||
color14 #3e953a
|
|
||||||
color7 #bbbbbb
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #f8f8f8
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #1b1d1e
|
|
||||||
foreground #6e6e6e
|
|
||||||
cursor #fcee0b
|
|
||||||
selection_background #4d4f4c
|
|
||||||
color0 #1b1d1e
|
|
||||||
color8 #505354
|
|
||||||
color1 #e6db43
|
|
||||||
color9 #fff68d
|
|
||||||
color2 #c8be46
|
|
||||||
color10 #fff27c
|
|
||||||
color3 #f3fd21
|
|
||||||
color11 #feed6c
|
|
||||||
color4 #737074
|
|
||||||
color12 #909495
|
|
||||||
color5 #737271
|
|
||||||
color13 #9a999d
|
|
||||||
color6 #615f5e
|
|
||||||
color14 #a2a2a5
|
|
||||||
color7 #c5c5be
|
|
||||||
color15 #dadad5
|
|
||||||
selection_foreground #1b1d1e
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #d4ccb9
|
|
||||||
foreground #45363b
|
|
||||||
cursor #45363b
|
|
||||||
selection_background #958b83
|
|
||||||
color0 #20111a
|
|
||||||
color8 #5e5252
|
|
||||||
color1 #bd100d
|
|
||||||
color9 #bd100d
|
|
||||||
color2 #858062
|
|
||||||
color10 #858062
|
|
||||||
color3 #e9a448
|
|
||||||
color11 #e9a448
|
|
||||||
color4 #416978
|
|
||||||
color12 #416978
|
|
||||||
color5 #96522b
|
|
||||||
color13 #96522b
|
|
||||||
color6 #98999c
|
|
||||||
color14 #98999c
|
|
||||||
color7 #958b83
|
|
||||||
color15 #d4ccb9
|
|
||||||
selection_foreground #d4ccb9
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #20111a
|
|
||||||
foreground #958b83
|
|
||||||
cursor #958b83
|
|
||||||
selection_background #45363b
|
|
||||||
color0 #20111a
|
|
||||||
color8 #5e5252
|
|
||||||
color1 #bd100d
|
|
||||||
color9 #bd100d
|
|
||||||
color2 #858062
|
|
||||||
color10 #858062
|
|
||||||
color3 #e9a448
|
|
||||||
color11 #e9a448
|
|
||||||
color4 #416978
|
|
||||||
color12 #416978
|
|
||||||
color5 #96522b
|
|
||||||
color13 #96522b
|
|
||||||
color6 #98999c
|
|
||||||
color14 #98999c
|
|
||||||
color7 #958b83
|
|
||||||
color15 #d4ccb9
|
|
||||||
selection_foreground #20111a
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #2a1e1d
|
|
||||||
foreground #dfdab7
|
|
||||||
cursor #573d25
|
|
||||||
selection_background #563c27
|
|
||||||
color0 #573d25
|
|
||||||
color8 #9a6b49
|
|
||||||
color1 #be2d26
|
|
||||||
color9 #e84526
|
|
||||||
color2 #6ba08a
|
|
||||||
color10 #94d7ba
|
|
||||||
color3 #e99c29
|
|
||||||
color11 #d0d04f
|
|
||||||
color4 #5a86ac
|
|
||||||
color12 #b8d3ed
|
|
||||||
color5 #ab80a6
|
|
||||||
color13 #d09dca
|
|
||||||
color6 #74a5ac
|
|
||||||
color14 #92ced6
|
|
||||||
color7 #dfdab7
|
|
||||||
color15 #fff9d4
|
|
||||||
selection_foreground #2a1e1d
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #0d1925
|
|
||||||
foreground #d9e5f1
|
|
||||||
cursor #d9e5f1
|
|
||||||
color0 #000000
|
|
||||||
color8 #252525
|
|
||||||
color1 #b87979
|
|
||||||
color9 #dabdbd
|
|
||||||
color2 #79b879
|
|
||||||
color10 #bddabd
|
|
||||||
color3 #b8b879
|
|
||||||
color11 #dadabd
|
|
||||||
color4 #7979b8
|
|
||||||
color12 #bdbdda
|
|
||||||
color5 #b879b8
|
|
||||||
color13 #dabdda
|
|
||||||
color6 #79b8b8
|
|
||||||
color14 #bddada
|
|
||||||
color7 #d9d9d9
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #0d1925
|
|
||||||
selection_background #d9e6f2
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #0000a3
|
|
||||||
foreground #ffff4d
|
|
||||||
cursor #ffa460
|
|
||||||
selection_background #a3a3a3
|
|
||||||
color0 #4e4e4e
|
|
||||||
color8 #7c7c7c
|
|
||||||
color1 #ff6b60
|
|
||||||
color9 #ffb6b0
|
|
||||||
color2 #a7ff60
|
|
||||||
color10 #ceffab
|
|
||||||
color3 #ffffb6
|
|
||||||
color11 #ffffcb
|
|
||||||
color4 #96cafd
|
|
||||||
color12 #b5dcfe
|
|
||||||
color5 #ff73fd
|
|
||||||
color13 #ff9cfe
|
|
||||||
color6 #c6c4fd
|
|
||||||
color14 #dfdffe
|
|
||||||
color7 #eeeeee
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #0000a3
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #191919
|
|
||||||
foreground #b2c8d6
|
|
||||||
cursor #f34a00
|
|
||||||
selection_background #b2c8d6
|
|
||||||
color0 #191919
|
|
||||||
color8 #191919
|
|
||||||
color1 #ff355b
|
|
||||||
color9 #ff355b
|
|
||||||
color2 #b6e875
|
|
||||||
color10 #b6e875
|
|
||||||
color3 #ffc150
|
|
||||||
color11 #ffc150
|
|
||||||
color4 #75d3ff
|
|
||||||
color12 #75d4ff
|
|
||||||
color5 #b975e6
|
|
||||||
color13 #b975e6
|
|
||||||
color6 #6cbeb5
|
|
||||||
color14 #6cbeb5
|
|
||||||
color7 #c1c8d6
|
|
||||||
color15 #c1c8d6
|
|
||||||
selection_foreground #191919
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #2b2b2b
|
|
||||||
foreground #e5e1db
|
|
||||||
cursor #ffffff
|
|
||||||
selection_background #5a637e
|
|
||||||
color0 #000000
|
|
||||||
color8 #323232
|
|
||||||
color1 #da4839
|
|
||||||
color9 #ff7b6a
|
|
||||||
color2 #509f50
|
|
||||||
color10 #83d082
|
|
||||||
color3 #ffd249
|
|
||||||
color11 #ffff7b
|
|
||||||
color4 #6d9cbd
|
|
||||||
color12 #9fcef0
|
|
||||||
color5 #cfcfff
|
|
||||||
color13 #ffffff
|
|
||||||
color6 #6d9cbd
|
|
||||||
color14 #a0cef0
|
|
||||||
color7 #ffffff
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #2b2b2b
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #131313
|
|
||||||
foreground #d6dae4
|
|
||||||
cursor #b9b9b9
|
|
||||||
selection_background #1f1f1f
|
|
||||||
color0 #1f1f1f
|
|
||||||
color8 #d6dae4
|
|
||||||
color1 #f71118
|
|
||||||
color9 #de342e
|
|
||||||
color2 #2cc55d
|
|
||||||
color10 #1dd260
|
|
||||||
color3 #ecb90f
|
|
||||||
color11 #f2bd09
|
|
||||||
color4 #2a84d2
|
|
||||||
color12 #0f80d5
|
|
||||||
color5 #4e59b7
|
|
||||||
color13 #524fb9
|
|
||||||
color6 #0f80d5
|
|
||||||
color14 #0f7cda
|
|
||||||
color7 #d6dae4
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #131313
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #40318d
|
|
||||||
foreground #7869c4
|
|
||||||
cursor #7869c4
|
|
||||||
selection_background #7869c4
|
|
||||||
color0 #090300
|
|
||||||
color8 #000000
|
|
||||||
color1 #883932
|
|
||||||
color9 #883932
|
|
||||||
color2 #55a049
|
|
||||||
color10 #55a049
|
|
||||||
color3 #bfce72
|
|
||||||
color11 #bfce72
|
|
||||||
color4 #40318d
|
|
||||||
color12 #40318d
|
|
||||||
color5 #8b3f96
|
|
||||||
color13 #8a3e95
|
|
||||||
color6 #67b6bd
|
|
||||||
color14 #67b6bd
|
|
||||||
color7 #ffffff
|
|
||||||
color15 #f7f7f7
|
|
||||||
selection_foreground #40318d
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #ffffff
|
|
||||||
foreground #262626
|
|
||||||
cursor #6fd2fc
|
|
||||||
selection_background #6fd2fc
|
|
||||||
color0 #000000
|
|
||||||
color8 #545753
|
|
||||||
color1 #f72729
|
|
||||||
color9 #fb0416
|
|
||||||
color2 #32895c
|
|
||||||
color10 #2cc631
|
|
||||||
color3 #f96f1c
|
|
||||||
color11 #fcd627
|
|
||||||
color4 #125ccf
|
|
||||||
color12 #156ffe
|
|
||||||
color5 #9f00bc
|
|
||||||
color13 #e800b0
|
|
||||||
color6 #32c2c0
|
|
||||||
color14 #39d5ce
|
|
||||||
color7 #b2b2b2
|
|
||||||
color15 #ededec
|
|
||||||
selection_foreground #ffffff
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #2b2c2e
|
|
||||||
foreground #d2d8d9
|
|
||||||
cursor #708183
|
|
||||||
selection_background #e3e8ed
|
|
||||||
color0 #7c8a8f
|
|
||||||
color8 #888888
|
|
||||||
color1 #b23a51
|
|
||||||
color9 #f24840
|
|
||||||
color2 #789a69
|
|
||||||
color10 #80c46f
|
|
||||||
color3 #b9ab4a
|
|
||||||
color11 #ffeb62
|
|
||||||
color4 #2a7fac
|
|
||||||
color12 #4095ff
|
|
||||||
color5 #bc4f5a
|
|
||||||
color13 #fb5175
|
|
||||||
color6 #44a799
|
|
||||||
color14 #52ccbd
|
|
||||||
color7 #d2d8d9
|
|
||||||
color15 #d2d8d9
|
|
||||||
selection_foreground #2b2c2e
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #29262f
|
|
||||||
foreground #d9e6f2
|
|
||||||
cursor #d9e6f2
|
|
||||||
selection_background #073642
|
|
||||||
color0 #000000
|
|
||||||
color8 #323232
|
|
||||||
color1 #c37372
|
|
||||||
color9 #dbaaaa
|
|
||||||
color2 #72c373
|
|
||||||
color10 #aadbaa
|
|
||||||
color3 #c2c372
|
|
||||||
color11 #dadbaa
|
|
||||||
color4 #7372c3
|
|
||||||
color12 #aaaadb
|
|
||||||
color5 #c372c2
|
|
||||||
color13 #dbaada
|
|
||||||
color6 #72c2c3
|
|
||||||
color14 #aadadb
|
|
||||||
color7 #d9d9d9
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #29262f
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #181c27
|
|
||||||
foreground #ada37a
|
|
||||||
cursor #91805a
|
|
||||||
selection_background #172539
|
|
||||||
color0 #181818
|
|
||||||
color8 #555555
|
|
||||||
color1 #800009
|
|
||||||
color9 #ab3834
|
|
||||||
color2 #48513b
|
|
||||||
color10 #a6a65d
|
|
||||||
color3 #cc8a3e
|
|
||||||
color11 #dcde7b
|
|
||||||
color4 #566d8c
|
|
||||||
color12 #2f97c6
|
|
||||||
color5 #724c7c
|
|
||||||
color13 #d33060
|
|
||||||
color6 #5b4f4a
|
|
||||||
color14 #f3dab1
|
|
||||||
color7 #ada37e
|
|
||||||
color15 #f3f3f3
|
|
||||||
selection_foreground #181c27
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #122637
|
|
||||||
foreground #ffffff
|
|
||||||
cursor #f0cb09
|
|
||||||
selection_background #18344f
|
|
||||||
color0 #000000
|
|
||||||
color8 #545454
|
|
||||||
color1 #ff0000
|
|
||||||
color9 #f40d17
|
|
||||||
color2 #37dd21
|
|
||||||
color10 #3bcf1d
|
|
||||||
color3 #fee409
|
|
||||||
color11 #ecc809
|
|
||||||
color4 #1460d2
|
|
||||||
color12 #5555ff
|
|
||||||
color5 #ff005d
|
|
||||||
color13 #ff55ff
|
|
||||||
color6 #00bbbb
|
|
||||||
color14 #6ae3f9
|
|
||||||
color7 #bbbbbb
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #122637
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #142838
|
|
||||||
foreground #8ff586
|
|
||||||
cursor #c4206f
|
|
||||||
selection_background #084fb0
|
|
||||||
color0 #142630
|
|
||||||
color8 #fff688
|
|
||||||
color1 #ff2320
|
|
||||||
color9 #d4312e
|
|
||||||
color2 #3aa5ff
|
|
||||||
color10 #8ff586
|
|
||||||
color3 #e9e75c
|
|
||||||
color11 #e9f06d
|
|
||||||
color4 #8ff586
|
|
||||||
color12 #3c7dd2
|
|
||||||
color5 #781aa0
|
|
||||||
color13 #8230a7
|
|
||||||
color6 #8ff586
|
|
||||||
color14 #6cbc67
|
|
||||||
color7 #ba45b1
|
|
||||||
color15 #8ff586
|
|
||||||
selection_foreground #142838
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #140607
|
|
||||||
foreground #685259
|
|
||||||
cursor #685259
|
|
||||||
selection_background #2a1a1c
|
|
||||||
color0 #2a1a1c
|
|
||||||
color8 #3c2a2e
|
|
||||||
color1 #90002a
|
|
||||||
color9 #c5245c
|
|
||||||
color2 #579523
|
|
||||||
color10 #8dff56
|
|
||||||
color3 #aa301b
|
|
||||||
color11 #c7371d
|
|
||||||
color4 #8b87af
|
|
||||||
color12 #cfc9ff
|
|
||||||
color5 #682e50
|
|
||||||
color13 #fb6cb9
|
|
||||||
color6 #e8a766
|
|
||||||
color14 #ffceae
|
|
||||||
color7 #685259
|
|
||||||
color15 #af949d
|
|
||||||
selection_foreground #140607
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #000000
|
|
||||||
foreground #ffffff
|
|
||||||
cursor #bbbbbb
|
|
||||||
selection_background #b5d5ff
|
|
||||||
color0 #000000
|
|
||||||
color8 #545454
|
|
||||||
color1 #ff5555
|
|
||||||
color9 #ff5555
|
|
||||||
color2 #55ff55
|
|
||||||
color10 #55ff55
|
|
||||||
color3 #ffff55
|
|
||||||
color11 #ffff55
|
|
||||||
color4 #5555ff
|
|
||||||
color12 #5555ff
|
|
||||||
color5 #ff55ff
|
|
||||||
color13 #ff55ff
|
|
||||||
color6 #55ffff
|
|
||||||
color14 #55ffff
|
|
||||||
color7 #bbbbbb
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #000000
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #212324
|
|
||||||
foreground #b9b9b9
|
|
||||||
cursor #bbbbbb
|
|
||||||
selection_background #2f3333
|
|
||||||
color0 #000000
|
|
||||||
color8 #000000
|
|
||||||
color1 #e8331c
|
|
||||||
color9 #df5a4f
|
|
||||||
color2 #68c156
|
|
||||||
color10 #76b768
|
|
||||||
color3 #f1d32b
|
|
||||||
color11 #eed64a
|
|
||||||
color4 #1c98e8
|
|
||||||
color12 #387bd2
|
|
||||||
color5 #8e69c8
|
|
||||||
color13 #957bbd
|
|
||||||
color6 #1c98e8
|
|
||||||
color14 #3d96e2
|
|
||||||
color7 #b9b9b9
|
|
||||||
color15 #b9b9b9
|
|
||||||
selection_foreground #212324
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #333333
|
|
||||||
foreground #ffffff
|
|
||||||
cursor #00ff00
|
|
||||||
selection_background #b5d5ff
|
|
||||||
color0 #4d4d4d
|
|
||||||
color8 #545454
|
|
||||||
color1 #ff2b2b
|
|
||||||
color9 #ff5555
|
|
||||||
color2 #98fb98
|
|
||||||
color10 #55ff55
|
|
||||||
color3 #f0e68c
|
|
||||||
color11 #ffff55
|
|
||||||
color4 #cd853f
|
|
||||||
color12 #87ceff
|
|
||||||
color5 #ffdead
|
|
||||||
color13 #ff55ff
|
|
||||||
color6 #ffa0a0
|
|
||||||
color14 #ffd700
|
|
||||||
color7 #f5deb3
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #333333
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #1e1e1e
|
|
||||||
foreground #b8bcb9
|
|
||||||
cursor #f83d19
|
|
||||||
selection_background #292c31
|
|
||||||
color0 #3a3c43
|
|
||||||
color8 #888987
|
|
||||||
color1 #be3e48
|
|
||||||
color9 #fb001e
|
|
||||||
color2 #869a3a
|
|
||||||
color10 #0e712e
|
|
||||||
color3 #c4a535
|
|
||||||
color11 #c37033
|
|
||||||
color4 #4e76a1
|
|
||||||
color12 #176ce3
|
|
||||||
color5 #855b8d
|
|
||||||
color13 #fb0067
|
|
||||||
color6 #568ea3
|
|
||||||
color14 #2d6f6c
|
|
||||||
color7 #b8bcb9
|
|
||||||
color15 #fcffb8
|
|
||||||
selection_foreground #1e1e1e
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #252b35
|
|
||||||
foreground #eaeaea
|
|
||||||
cursor #d9002f
|
|
||||||
selection_background #194080
|
|
||||||
color0 #181818
|
|
||||||
color8 #181818
|
|
||||||
color1 #bf081d
|
|
||||||
color9 #bf081d
|
|
||||||
color2 #3d9751
|
|
||||||
color10 #3d9751
|
|
||||||
color3 #f6bb33
|
|
||||||
color11 #f6bb33
|
|
||||||
color4 #16b1df
|
|
||||||
color12 #16b1df
|
|
||||||
color5 #772fb0
|
|
||||||
color13 #772fb0
|
|
||||||
color6 #8bd1ed
|
|
||||||
color14 #8bd1ed
|
|
||||||
color7 #ffffff
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #252b35
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #1e1f28
|
|
||||||
foreground #f8f8f2
|
|
||||||
cursor #bbbbbb
|
|
||||||
selection_background #44475a
|
|
||||||
color0 #000000
|
|
||||||
color8 #545454
|
|
||||||
color1 #ff5555
|
|
||||||
color9 #ff5454
|
|
||||||
color2 #50fa7b
|
|
||||||
color10 #50fa7b
|
|
||||||
color3 #f0fa8b
|
|
||||||
color11 #f0fa8b
|
|
||||||
color4 #bd92f8
|
|
||||||
color12 #bd92f8
|
|
||||||
color5 #ff78c5
|
|
||||||
color13 #ff78c5
|
|
||||||
color6 #8ae9fc
|
|
||||||
color14 #8ae9fc
|
|
||||||
color7 #bbbbbb
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #1e1f28
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #422553
|
|
||||||
foreground #c4c8c5
|
|
||||||
cursor #c4c8c5
|
|
||||||
selection_background #008aff
|
|
||||||
color0 #2b283d
|
|
||||||
color8 #413e53
|
|
||||||
color1 #ae0000
|
|
||||||
color9 #d3a624
|
|
||||||
color2 #3e7c54
|
|
||||||
color10 #aaaaaa
|
|
||||||
color3 #f0c75e
|
|
||||||
color11 #716254
|
|
||||||
color4 #415baf
|
|
||||||
color12 #946a2c
|
|
||||||
color5 #9445ae
|
|
||||||
color13 #b294ba
|
|
||||||
color6 #008aff
|
|
||||||
color14 #25de50
|
|
||||||
color7 #850000
|
|
||||||
color15 #c9c9c9
|
|
||||||
selection_foreground #422553
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #1f1c27
|
|
||||||
foreground #b6a0ff
|
|
||||||
cursor #ff9738
|
|
||||||
selection_background #353146
|
|
||||||
color0 #1f1c27
|
|
||||||
color8 #353146
|
|
||||||
color1 #d8393d
|
|
||||||
color9 #d8393d
|
|
||||||
color2 #2dcc72
|
|
||||||
color10 #2dcc72
|
|
||||||
color3 #d8b76e
|
|
||||||
color11 #d8b76e
|
|
||||||
color4 #ffc183
|
|
||||||
color12 #ffc183
|
|
||||||
color5 #dd8d40
|
|
||||||
color13 #dd8d40
|
|
||||||
color6 #2388ff
|
|
||||||
color14 #2388ff
|
|
||||||
color7 #b6a0ff
|
|
||||||
color15 #e9e4ff
|
|
||||||
selection_foreground #1f1c27
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #000000
|
|
||||||
foreground #00a595
|
|
||||||
cursor #bbbbbb
|
|
||||||
selection_background #00a48c
|
|
||||||
color0 #000000
|
|
||||||
color8 #545454
|
|
||||||
color1 #9f0000
|
|
||||||
color9 #ff0000
|
|
||||||
color2 #008b00
|
|
||||||
color10 #00ee00
|
|
||||||
color3 #ffcf00
|
|
||||||
color11 #ffff00
|
|
||||||
color4 #0081ff
|
|
||||||
color12 #0000ff
|
|
||||||
color5 #bc00ca
|
|
||||||
color13 #ff00ff
|
|
||||||
color6 #008b8b
|
|
||||||
color14 #00cdcd
|
|
||||||
color7 #bbbbbb
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #000000
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #282420
|
|
||||||
foreground #e5c6a8
|
|
||||||
cursor #f6f6ec
|
|
||||||
selection_background #111417
|
|
||||||
color0 #111417
|
|
||||||
color8 #665e54
|
|
||||||
color1 #c84134
|
|
||||||
color9 #ff6459
|
|
||||||
color2 #84c44b
|
|
||||||
color10 #97e035
|
|
||||||
color3 #f4ae2e
|
|
||||||
color11 #dfd561
|
|
||||||
color4 #1397b9
|
|
||||||
color12 #5ed9ff
|
|
||||||
color5 #d0623c
|
|
||||||
color13 #ff9168
|
|
||||||
color6 #4f9452
|
|
||||||
color14 #83ef88
|
|
||||||
color7 #e5c5a9
|
|
||||||
color15 #f6f6ec
|
|
||||||
selection_foreground #282420
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #21211c
|
|
||||||
foreground #807973
|
|
||||||
cursor #facb7f
|
|
||||||
selection_background #403729
|
|
||||||
color0 #3c3b30
|
|
||||||
color8 #545444
|
|
||||||
color1 #97280f
|
|
||||||
color9 #df502a
|
|
||||||
color2 #479942
|
|
||||||
color10 #60e06f
|
|
||||||
color3 #7f7110
|
|
||||||
color11 #d69827
|
|
||||||
color4 #497f7d
|
|
||||||
color12 #78d8d8
|
|
||||||
color5 #7e4e2e
|
|
||||||
color13 #cd7c53
|
|
||||||
color6 #387f58
|
|
||||||
color14 #58d598
|
|
||||||
color7 #807974
|
|
||||||
color15 #fff1e8
|
|
||||||
selection_foreground #21211c
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# Theme ported from the Mac Terminal application.
|
|
||||||
|
|
||||||
background #323232
|
|
||||||
foreground #ffffff
|
|
||||||
cursor #d6d6d6
|
|
||||||
selection_background #5b5b5b
|
|
||||||
selection_foreground #323232
|
|
||||||
color0 #353535
|
|
||||||
color8 #535353
|
|
||||||
color1 #d25252
|
|
||||||
color9 #f00c0c
|
|
||||||
color2 #a4c161
|
|
||||||
color10 #c1df74
|
|
||||||
color3 #ffc56d
|
|
||||||
color11 #e1e48a
|
|
||||||
color4 #6c99ba
|
|
||||||
color12 #8ab6d9
|
|
||||||
color5 #d096d9
|
|
||||||
color13 #efb5f7
|
|
||||||
color6 #bdd6ff
|
|
||||||
color14 #dbf4ff
|
|
||||||
color7 #ededec
|
|
||||||
color15 #ffffff
|
|
||||||
active_tab_foreground #ffffff
|
|
||||||
active_tab_background #535353
|
|
||||||
inactive_tab_foreground #ffffff
|
|
||||||
inactive_tab_background #353535
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #2a211c
|
|
||||||
foreground #b8a898
|
|
||||||
cursor #ffffff
|
|
||||||
selection_background #c3dcff
|
|
||||||
color0 #000000
|
|
||||||
color8 #545753
|
|
||||||
color1 #cc0000
|
|
||||||
color9 #ef2828
|
|
||||||
color2 #1a921c
|
|
||||||
color10 #9aff87
|
|
||||||
color3 #efe43a
|
|
||||||
color11 #fffa5c
|
|
||||||
color4 #0066ff
|
|
||||||
color12 #43a8ed
|
|
||||||
color5 #c5656b
|
|
||||||
color13 #ff8089
|
|
||||||
color6 #05989a
|
|
||||||
color14 #34e2e2
|
|
||||||
color7 #d3d7cf
|
|
||||||
color15 #ededec
|
|
||||||
selection_foreground #2a211c
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #282f32
|
|
||||||
foreground #dad9df
|
|
||||||
cursor #d35f5a
|
|
||||||
selection_background #eeb7ab
|
|
||||||
color0 #282f32
|
|
||||||
color8 #092027
|
|
||||||
color1 #ca1d2c
|
|
||||||
color9 #d35f5a
|
|
||||||
color2 #edb7ab
|
|
||||||
color10 #d35f5a
|
|
||||||
color3 #b7aa9a
|
|
||||||
color11 #a86571
|
|
||||||
color4 #2e78c1
|
|
||||||
color12 #7c84c4
|
|
||||||
color5 #c0226e
|
|
||||||
color13 #5b5db2
|
|
||||||
color6 #309185
|
|
||||||
color14 #81908f
|
|
||||||
color7 #e9e2cd
|
|
||||||
color15 #fcf4de
|
|
||||||
selection_foreground #282f32
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #222436
|
|
||||||
foreground #eceffd
|
|
||||||
cursor #fdcd5e
|
|
||||||
selection_background #fcf6e8
|
|
||||||
color0 #03063c
|
|
||||||
color8 #6c5a30
|
|
||||||
color1 #c60049
|
|
||||||
color9 #d94a8a
|
|
||||||
color2 #abf157
|
|
||||||
color10 #daffa8
|
|
||||||
color3 #fdcd5e
|
|
||||||
color11 #fee6a8
|
|
||||||
color4 #525fb8
|
|
||||||
color12 #b1bdf9
|
|
||||||
color5 #976f81
|
|
||||||
color13 #fda4cc
|
|
||||||
color6 #968662
|
|
||||||
color14 #a4bc86
|
|
||||||
color7 #eceffc
|
|
||||||
color15 #f6ffec
|
|
||||||
selection_foreground #222436
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #002240
|
|
||||||
foreground #2bc45d
|
|
||||||
cursor #e5bd0c
|
|
||||||
selection_background #782b9c
|
|
||||||
color0 #212c3e
|
|
||||||
color8 #202b3b
|
|
||||||
color1 #a72320
|
|
||||||
color9 #d3302e
|
|
||||||
color2 #32a448
|
|
||||||
color10 #2c9440
|
|
||||||
color3 #e58d11
|
|
||||||
color11 #e5bd0c
|
|
||||||
color4 #3066ab
|
|
||||||
color12 #3b7cd2
|
|
||||||
color5 #7819a0
|
|
||||||
color13 #822fa7
|
|
||||||
color6 #2b9270
|
|
||||||
color14 #35b286
|
|
||||||
color7 #afb6b9
|
|
||||||
color15 #e6ecec
|
|
||||||
selection_foreground #002240
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #1c1e20
|
|
||||||
foreground #b8daee
|
|
||||||
cursor #708183
|
|
||||||
selection_background #2a2a24
|
|
||||||
color0 #1c1d19
|
|
||||||
color8 #1c1d19
|
|
||||||
color1 #f18238
|
|
||||||
color9 #d12a24
|
|
||||||
color2 #9ed264
|
|
||||||
color10 #a7d32c
|
|
||||||
color3 #f3ef6d
|
|
||||||
color11 #ff8948
|
|
||||||
color4 #4f96be
|
|
||||||
color12 #61b8d0
|
|
||||||
color5 #695abb
|
|
||||||
color13 #695abb
|
|
||||||
color6 #d53864
|
|
||||||
color14 #d53864
|
|
||||||
color7 #fefffe
|
|
||||||
color15 #fefffe
|
|
||||||
selection_foreground #1c1e20
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #0e0c15
|
|
||||||
foreground #dbd0b9
|
|
||||||
cursor #bbbbbb
|
|
||||||
selection_background #f3e0b8
|
|
||||||
color0 #08002e
|
|
||||||
color8 #331d4c
|
|
||||||
color1 #64002c
|
|
||||||
color9 #cf2062
|
|
||||||
color2 #5d731a
|
|
||||||
color10 #b3ce58
|
|
||||||
color3 #cd751c
|
|
||||||
color11 #fac357
|
|
||||||
color4 #1d6da1
|
|
||||||
color12 #40a4cf
|
|
||||||
color5 #b7077e
|
|
||||||
color13 #f02aae
|
|
||||||
color6 #42a38c
|
|
||||||
color14 #62caa8
|
|
||||||
color7 #f3e0b8
|
|
||||||
color15 #fff5db
|
|
||||||
selection_foreground #0e0c15
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #1b1b1d
|
|
||||||
foreground #acacac
|
|
||||||
cursor #cccccc
|
|
||||||
selection_background #e96153
|
|
||||||
color0 #242426
|
|
||||||
color8 #5eac6c
|
|
||||||
color1 #f8501a
|
|
||||||
color9 #f64319
|
|
||||||
color2 #565746
|
|
||||||
color10 #74eb4c
|
|
||||||
color3 #f9761d
|
|
||||||
color11 #fcc224
|
|
||||||
color4 #2c70b7
|
|
||||||
color12 #3393c9
|
|
||||||
color5 #f02d4e
|
|
||||||
color13 #e75e4e
|
|
||||||
color6 #3ba0a5
|
|
||||||
color14 #4ebce5
|
|
||||||
color7 #acacac
|
|
||||||
color15 #8b735a
|
|
||||||
selection_foreground #1b1b1d
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #241200
|
|
||||||
foreground #ddc165
|
|
||||||
cursor #e5591c
|
|
||||||
selection_background #e5591c
|
|
||||||
color0 #000000
|
|
||||||
color8 #7e6954
|
|
||||||
color1 #d5252b
|
|
||||||
color9 #e4591b
|
|
||||||
color2 #909b00
|
|
||||||
color10 #bfc659
|
|
||||||
color3 #bd8a13
|
|
||||||
color11 #ffca1b
|
|
||||||
color4 #4698a2
|
|
||||||
color12 #7cc9ce
|
|
||||||
color5 #8c4231
|
|
||||||
color13 #d16349
|
|
||||||
color6 #d98112
|
|
||||||
color14 #e6a96b
|
|
||||||
color7 #ddc165
|
|
||||||
color15 #ffe9a3
|
|
||||||
selection_foreground #241200
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #1c2836
|
|
||||||
foreground #ffffff
|
|
||||||
cursor #bbbbbb
|
|
||||||
selection_background #b4d5ff
|
|
||||||
color0 #000000
|
|
||||||
color8 #545454
|
|
||||||
color1 #f9555f
|
|
||||||
color9 #fa8b8e
|
|
||||||
color2 #20af89
|
|
||||||
color10 #34bb99
|
|
||||||
color3 #fdf029
|
|
||||||
color11 #ffff55
|
|
||||||
color4 #589cf5
|
|
||||||
color12 #589cf5
|
|
||||||
color5 #934d95
|
|
||||||
color13 #e75598
|
|
||||||
color6 #1e9ee6
|
|
||||||
color14 #3978bb
|
|
||||||
color7 #bbbbbb
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #1c2836
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #f4f4f4
|
|
||||||
foreground #3e3e3e
|
|
||||||
cursor #3f3f3f
|
|
||||||
selection_background #a9c1e2
|
|
||||||
color0 #3e3e3e
|
|
||||||
color8 #666666
|
|
||||||
color1 #970b16
|
|
||||||
color9 #de0000
|
|
||||||
color2 #07962a
|
|
||||||
color10 #87d5a2
|
|
||||||
color3 #f7edc7
|
|
||||||
color11 #f0cf06
|
|
||||||
color4 #003e8a
|
|
||||||
color12 #2e6cba
|
|
||||||
color5 #e94691
|
|
||||||
color13 #ffa29f
|
|
||||||
color6 #89d1ec
|
|
||||||
color14 #1cfafe
|
|
||||||
color7 #ffffff
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #f4f4f4
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #0c1115
|
|
||||||
foreground #ffffff
|
|
||||||
cursor #6c6c6c
|
|
||||||
selection_background #bd2523
|
|
||||||
color0 #2e343c
|
|
||||||
color8 #404a55
|
|
||||||
color1 #bd0f2f
|
|
||||||
color9 #bd0f2f
|
|
||||||
color2 #35a770
|
|
||||||
color10 #49e998
|
|
||||||
color3 #fb9435
|
|
||||||
color11 #fddf6e
|
|
||||||
color4 #1f5872
|
|
||||||
color12 #2a8bc1
|
|
||||||
color5 #bd2523
|
|
||||||
color13 #ea4727
|
|
||||||
color6 #778397
|
|
||||||
color14 #a0b6d3
|
|
||||||
color7 #ffffff
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #0c1115
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #2f0033
|
|
||||||
foreground #f6ed00
|
|
||||||
cursor #1a6500
|
|
||||||
selection_background #100a24
|
|
||||||
color0 #880041
|
|
||||||
color8 #411a6d
|
|
||||||
color1 #f78000
|
|
||||||
color9 #f800e1
|
|
||||||
color2 #249000
|
|
||||||
color10 #5743ff
|
|
||||||
color3 #f40000
|
|
||||||
color11 #ea00d7
|
|
||||||
color4 #000482
|
|
||||||
color12 #b90003
|
|
||||||
color5 #f43bff
|
|
||||||
color13 #9a5952
|
|
||||||
color6 #3affff
|
|
||||||
color14 #c8f9f3
|
|
||||||
color7 #000000
|
|
||||||
color15 #f5f4fb
|
|
||||||
selection_foreground #2f0033
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #161423
|
|
||||||
foreground #9e9ea0
|
|
||||||
cursor #a188f7
|
|
||||||
selection_background #483d70
|
|
||||||
color0 #2d283e
|
|
||||||
color8 #58506a
|
|
||||||
color1 #ec2160
|
|
||||||
color9 #f0719a
|
|
||||||
color2 #1fa91b
|
|
||||||
color10 #52a95d
|
|
||||||
color3 #8ddc1f
|
|
||||||
color11 #b2dc87
|
|
||||||
color4 #487cf4
|
|
||||||
color12 #a9bbeb
|
|
||||||
color5 #8c35c8
|
|
||||||
color13 #ac81c1
|
|
||||||
color6 #3added
|
|
||||||
color14 #9ce3ea
|
|
||||||
color7 #9e9ea0
|
|
||||||
color15 #a188f7
|
|
||||||
selection_foreground #161423
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# Theme ported from the Mac Terminal application.
|
|
||||||
|
|
||||||
background #12773d
|
|
||||||
foreground #fff0a4
|
|
||||||
cursor #8b2800
|
|
||||||
selection_background #b64825
|
|
||||||
color0 #000000
|
|
||||||
color8 #545454
|
|
||||||
color1 #ba0000
|
|
||||||
color9 #ba0000
|
|
||||||
color2 #00ba00
|
|
||||||
color10 #00ba00
|
|
||||||
color3 #e6af00
|
|
||||||
color11 #e6af00
|
|
||||||
color4 #0000a3
|
|
||||||
color12 #0000ba
|
|
||||||
color5 #950062
|
|
||||||
color13 #ff54ff
|
|
||||||
color6 #00baba
|
|
||||||
color14 #54ffff
|
|
||||||
color7 #bababa
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #12773d
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #121212
|
|
||||||
foreground #a0a0a0
|
|
||||||
cursor #bbbbbb
|
|
||||||
selection_background #453a39
|
|
||||||
color0 #1b1d1e
|
|
||||||
color8 #505354
|
|
||||||
color1 #f92672
|
|
||||||
color9 #ff669d
|
|
||||||
color2 #a6e22e
|
|
||||||
color10 #beed5f
|
|
||||||
color3 #fd971f
|
|
||||||
color11 #e6db74
|
|
||||||
color4 #66d9ef
|
|
||||||
color12 #66d9ef
|
|
||||||
color5 #9e6ffe
|
|
||||||
color13 #9e6ffe
|
|
||||||
color6 #5e7175
|
|
||||||
color14 #a3babf
|
|
||||||
color7 #ccccc6
|
|
||||||
color15 #f8f8f2
|
|
||||||
selection_foreground #121212
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #000000
|
|
||||||
foreground #a7a39c
|
|
||||||
cursor #a7a39c
|
|
||||||
selection_background #5a5753
|
|
||||||
color0 #000000
|
|
||||||
color8 #716d69
|
|
||||||
color1 #f7b63e
|
|
||||||
color9 #f7b63e
|
|
||||||
color2 #7fb5e1
|
|
||||||
color10 #7fb5e1
|
|
||||||
color3 #d6da24
|
|
||||||
color11 #d6da24
|
|
||||||
color4 #489d48
|
|
||||||
color12 #489d48
|
|
||||||
color5 #b295c5
|
|
||||||
color13 #b295c5
|
|
||||||
color6 #f4bed6
|
|
||||||
color14 #f4bed6
|
|
||||||
color7 #a7a39c
|
|
||||||
color15 #fefbe9
|
|
||||||
selection_foreground #000000
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #212224
|
|
||||||
foreground #ededed
|
|
||||||
cursor #dfd9b8
|
|
||||||
selection_background #384563
|
|
||||||
color0 #000000
|
|
||||||
color8 #5c4f49
|
|
||||||
color1 #cf0d17
|
|
||||||
color9 #ef7d17
|
|
||||||
color2 #128033
|
|
||||||
color10 #b1d130
|
|
||||||
color3 #ffca3d
|
|
||||||
color11 #fff11f
|
|
||||||
color4 #006ab3
|
|
||||||
color12 #4fc2fd
|
|
||||||
color5 #6a2674
|
|
||||||
color13 #de0070
|
|
||||||
color6 #384563
|
|
||||||
color14 #5c4f49
|
|
||||||
color7 #ededed
|
|
||||||
color15 #fefffe
|
|
||||||
selection_foreground #212224
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #0f0a05
|
|
||||||
foreground #84c137
|
|
||||||
cursor #23ff18
|
|
||||||
selection_background #083905
|
|
||||||
color0 #000000
|
|
||||||
color8 #666666
|
|
||||||
color1 #b6204a
|
|
||||||
color9 #e50000
|
|
||||||
color2 #00a600
|
|
||||||
color10 #86a83e
|
|
||||||
color3 #bebe00
|
|
||||||
color11 #e5e500
|
|
||||||
color4 #246db2
|
|
||||||
color12 #0000ff
|
|
||||||
color5 #b200b2
|
|
||||||
color13 #e500e5
|
|
||||||
color6 #00a6b2
|
|
||||||
color14 #00e5e5
|
|
||||||
color7 #bfbfbf
|
|
||||||
color15 #e5e5e5
|
|
||||||
selection_foreground #0f0a05
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# Theme ported from the Mac Terminal application.
|
|
||||||
|
|
||||||
background #000000
|
|
||||||
foreground #00ff00
|
|
||||||
cursor #23ff18
|
|
||||||
selection_background #083905
|
|
||||||
color0 #000000
|
|
||||||
color8 #666666
|
|
||||||
color1 #990000
|
|
||||||
color9 #e50000
|
|
||||||
color2 #00a600
|
|
||||||
color10 #00d900
|
|
||||||
color3 #999900
|
|
||||||
color11 #e5e500
|
|
||||||
color4 #0000b2
|
|
||||||
color12 #0000ff
|
|
||||||
color5 #b200b2
|
|
||||||
color13 #e500e5
|
|
||||||
color6 #00a6b2
|
|
||||||
color14 #00e5e5
|
|
||||||
color7 #bebebe
|
|
||||||
color15 #e5e5e5
|
|
||||||
selection_foreground #000000
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #000000
|
|
||||||
foreground #dadbda
|
|
||||||
cursor #bbbbbb
|
|
||||||
selection_background #b4d5ff
|
|
||||||
color0 #575757
|
|
||||||
color8 #252525
|
|
||||||
color1 #ff1b00
|
|
||||||
color9 #d41c00
|
|
||||||
color2 #a5df55
|
|
||||||
color10 #a5df55
|
|
||||||
color3 #fbe74a
|
|
||||||
color11 #fbe749
|
|
||||||
color4 #486387
|
|
||||||
color12 #89bdff
|
|
||||||
color5 #fc5ef0
|
|
||||||
color13 #bf00c0
|
|
||||||
color6 #85e9fe
|
|
||||||
color14 #85e9fe
|
|
||||||
color7 #cbcbcb
|
|
||||||
color15 #dbdbdb
|
|
||||||
selection_foreground #000000
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #161718
|
|
||||||
foreground #b7bcb9
|
|
||||||
cursor #b7bcb9
|
|
||||||
selection_background #1e1f22
|
|
||||||
color0 #2a2e33
|
|
||||||
color8 #1d1e21
|
|
||||||
color1 #b74d50
|
|
||||||
color9 #8c2d32
|
|
||||||
color2 #b3be5a
|
|
||||||
color10 #788331
|
|
||||||
color3 #e3b55e
|
|
||||||
color11 #e5894f
|
|
||||||
color4 #6d90b0
|
|
||||||
color12 #4b6b88
|
|
||||||
color5 #a07eab
|
|
||||||
color13 #6e4f79
|
|
||||||
color6 #7fbeb3
|
|
||||||
color14 #4d7b73
|
|
||||||
color7 #b5b8b6
|
|
||||||
color15 #5a6169
|
|
||||||
selection_foreground #161718
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #3a3c3e
|
|
||||||
foreground #d9eed2
|
|
||||||
cursor #41ff58
|
|
||||||
selection_background #2a9b34
|
|
||||||
color0 #1e1e1e
|
|
||||||
color8 #03260f
|
|
||||||
color1 #fb0029
|
|
||||||
color9 #a6ff3e
|
|
||||||
color2 #329b24
|
|
||||||
color10 #9fff6d
|
|
||||||
color3 #649a25
|
|
||||||
color11 #d1ff6d
|
|
||||||
color4 #149b45
|
|
||||||
color12 #72ffb5
|
|
||||||
color5 #53b82b
|
|
||||||
color13 #50ff3d
|
|
||||||
color6 #2bb767
|
|
||||||
color14 #22ff71
|
|
||||||
color7 #dffeee
|
|
||||||
color15 #daeed0
|
|
||||||
selection_foreground #3a3c3e
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #262626
|
|
||||||
foreground #ffcb83
|
|
||||||
cursor #fb521c
|
|
||||||
selection_background #c03f1f
|
|
||||||
color0 #000000
|
|
||||||
color8 #6a4e29
|
|
||||||
color1 #c03900
|
|
||||||
color9 #ff8b67
|
|
||||||
color2 #a3a900
|
|
||||||
color10 #f6ff3f
|
|
||||||
color3 #caae00
|
|
||||||
color11 #ffe36e
|
|
||||||
color4 #bd6c00
|
|
||||||
color12 #ffbd54
|
|
||||||
color5 #fb5d00
|
|
||||||
color13 #fc874f
|
|
||||||
color6 #f79400
|
|
||||||
color14 #c59752
|
|
||||||
color7 #ffc88a
|
|
||||||
color15 #f9f9fe
|
|
||||||
selection_foreground #262626
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #000000
|
|
||||||
foreground #f1f1f1
|
|
||||||
cursor #7f7f7f
|
|
||||||
selection_background #b4d5ff
|
|
||||||
color0 #4f4f4f
|
|
||||||
color8 #7b7b7b
|
|
||||||
color1 #fa6c5f
|
|
||||||
color9 #fcb6af
|
|
||||||
color2 #a8fe60
|
|
||||||
color10 #ceffab
|
|
||||||
color3 #fffeb6
|
|
||||||
color11 #fffecc
|
|
||||||
color4 #96cafd
|
|
||||||
color12 #b5dcfe
|
|
||||||
color5 #fa72fc
|
|
||||||
color13 #fb9bfe
|
|
||||||
color6 #c6c4fd
|
|
||||||
color14 #dfdffd
|
|
||||||
color7 #eeedee
|
|
||||||
color15 #fefffe
|
|
||||||
selection_foreground #000000
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #2c1c15
|
|
||||||
foreground #ffcc2f
|
|
||||||
cursor #23ff18
|
|
||||||
selection_background #ae8c20
|
|
||||||
color0 #2c1d16
|
|
||||||
color8 #666666
|
|
||||||
color1 #ef5734
|
|
||||||
color9 #e50000
|
|
||||||
color2 #2baf2b
|
|
||||||
color10 #86a83e
|
|
||||||
color3 #bdbe00
|
|
||||||
color11 #e5e500
|
|
||||||
color4 #246db2
|
|
||||||
color12 #0000ff
|
|
||||||
color5 #cf5ec0
|
|
||||||
color13 #e500e5
|
|
||||||
color6 #00acee
|
|
||||||
color14 #00e5e5
|
|
||||||
color7 #bfbfbf
|
|
||||||
color15 #e5e5e5
|
|
||||||
selection_foreground #2c1c15
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #1d1d1d
|
|
||||||
foreground #f7f6ec
|
|
||||||
cursor #eccf4f
|
|
||||||
selection_background #165776
|
|
||||||
color0 #343835
|
|
||||||
color8 #585a58
|
|
||||||
color1 #ce3e60
|
|
||||||
color9 #d18ea6
|
|
||||||
color2 #7bb75b
|
|
||||||
color10 #767e2b
|
|
||||||
color3 #e8b32a
|
|
||||||
color11 #77592e
|
|
||||||
color4 #4c99d3
|
|
||||||
color12 #135879
|
|
||||||
color5 #a57fc4
|
|
||||||
color13 #5f4190
|
|
||||||
color6 #389aac
|
|
||||||
color14 #76bbca
|
|
||||||
color7 #f9faf6
|
|
||||||
color15 #b1b5ae
|
|
||||||
selection_foreground #1d1d1d
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #111111
|
|
||||||
foreground #dedede
|
|
||||||
cursor #ffa460
|
|
||||||
selection_background #464d91
|
|
||||||
color0 #919191
|
|
||||||
color8 #bdbdbd
|
|
||||||
color1 #e17373
|
|
||||||
color9 #ffa0a0
|
|
||||||
color2 #94b978
|
|
||||||
color10 #bddeab
|
|
||||||
color3 #ffb97b
|
|
||||||
color11 #ffdba0
|
|
||||||
color4 #96bddb
|
|
||||||
color12 #b1d7f6
|
|
||||||
color5 #e1c0fa
|
|
||||||
color13 #fbdaff
|
|
||||||
color6 #00988e
|
|
||||||
color14 #19b2a7
|
|
||||||
color7 #dedede
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #111111
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #202020
|
|
||||||
foreground #adadad
|
|
||||||
cursor #ffffff
|
|
||||||
selection_background #1a3272
|
|
||||||
color0 #000000
|
|
||||||
color8 #545454
|
|
||||||
color1 #fa5355
|
|
||||||
color9 #fb7172
|
|
||||||
color2 #126e00
|
|
||||||
color10 #67ff4f
|
|
||||||
color3 #c2c300
|
|
||||||
color11 #ffff00
|
|
||||||
color4 #4581eb
|
|
||||||
color12 #6d9df1
|
|
||||||
color5 #fa54ff
|
|
||||||
color13 #fb82ff
|
|
||||||
color6 #33c2c1
|
|
||||||
color14 #60d3d1
|
|
||||||
color7 #adadad
|
|
||||||
color15 #eeeeee
|
|
||||||
selection_foreground #202020
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #0e100a
|
|
||||||
foreground #f7f7f7
|
|
||||||
cursor #9fda9c
|
|
||||||
selection_background #9ba686
|
|
||||||
color0 #4d4d4d
|
|
||||||
color8 #5a5a5a
|
|
||||||
color1 #c70031
|
|
||||||
color9 #f01578
|
|
||||||
color2 #29cf13
|
|
||||||
color10 #6ce05c
|
|
||||||
color3 #d8e30e
|
|
||||||
color11 #f3f79e
|
|
||||||
color4 #3449d1
|
|
||||||
color12 #97a4f7
|
|
||||||
color5 #8400ff
|
|
||||||
color13 #c495f0
|
|
||||||
color6 #0798ab
|
|
||||||
color14 #68f2e0
|
|
||||||
color7 #e2d1e3
|
|
||||||
color15 #ffffff
|
|
||||||
selection_foreground #0e100a
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #212121
|
|
||||||
foreground #949494
|
|
||||||
cursor #424242
|
|
||||||
selection_background #424242
|
|
||||||
color0 #2b2b2b
|
|
||||||
color8 #444747
|
|
||||||
color1 #d35a5f
|
|
||||||
color9 #d3222e
|
|
||||||
color2 #afba66
|
|
||||||
color10 #aabb39
|
|
||||||
color3 #e5d289
|
|
||||||
color11 #e4bd39
|
|
||||||
color4 #a0b9d5
|
|
||||||
color12 #6599d5
|
|
||||||
color5 #bf92d5
|
|
||||||
color13 #aa52d5
|
|
||||||
color6 #91beb6
|
|
||||||
color14 #5fbfad
|
|
||||||
color7 #3b3c3c
|
|
||||||
color15 #c0c2c2
|
|
||||||
selection_foreground #212121
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #050014
|
|
||||||
foreground #736d7c
|
|
||||||
cursor #8b91fa
|
|
||||||
selection_background #36323b
|
|
||||||
color0 #230045
|
|
||||||
color8 #362c45
|
|
||||||
color1 #7c1525
|
|
||||||
color9 #df5066
|
|
||||||
color2 #337e6f
|
|
||||||
color10 #52e0c4
|
|
||||||
color3 #7f6f49
|
|
||||||
color11 #e0c286
|
|
||||||
color4 #4f4a7f
|
|
||||||
color12 #8e86df
|
|
||||||
color5 #593f7e
|
|
||||||
color13 #a675df
|
|
||||||
color6 #57767f
|
|
||||||
color14 #9ad3df
|
|
||||||
color7 #736d7c
|
|
||||||
color15 #8b91fa
|
|
||||||
selection_foreground #050014
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #2f2f2f
|
|
||||||
foreground #afc2c2
|
|
||||||
cursor #ffffff
|
|
||||||
selection_background #7cbeff
|
|
||||||
color0 #000000
|
|
||||||
color8 #000000
|
|
||||||
color1 #ff2f2f
|
|
||||||
color9 #ff2f2f
|
|
||||||
color2 #549a6f
|
|
||||||
color10 #549a6f
|
|
||||||
color3 #ccac00
|
|
||||||
color11 #ccac00
|
|
||||||
color4 #0099cc
|
|
||||||
color12 #0099cc
|
|
||||||
color5 #cc68c8
|
|
||||||
color13 #cc68c8
|
|
||||||
color6 #79c4cc
|
|
||||||
color14 #79c4cc
|
|
||||||
color7 #bccccc
|
|
||||||
color15 #bccccc
|
|
||||||
selection_foreground #2f2f2f
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
background #000000
|
|
||||||
foreground #afc2c2
|
|
||||||
cursor #ffffff
|
|
||||||
selection_background #7cbeff
|
|
||||||
color0 #000000
|
|
||||||
color8 #000000
|
|
||||||
color1 #ff2f2f
|
|
||||||
color9 #ff2f2f
|
|
||||||
color2 #549a6f
|
|
||||||
color10 #549a6f
|
|
||||||
color3 #ccac00
|
|
||||||
color11 #ccac00
|
|
||||||
color4 #0099cc
|
|
||||||
color12 #0099cc
|
|
||||||
color5 #cc68c8
|
|
||||||
color13 #cc68c8
|
|
||||||
color6 #79c4cc
|
|
||||||
color14 #79c4cc
|
|
||||||
color7 #bccccc
|
|
||||||
color15 #bccccc
|
|
||||||
selection_foreground #000000
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user