Compare commits
5 Commits
57922fcfce
...
ca1745a8d9
| Author | SHA1 | Date | |
|---|---|---|---|
| ca1745a8d9 | |||
| 672e091d1c | |||
| 9e509537d8 | |||
| 1163e12cea | |||
| e0b5988688 |
BIN
config/backgrounds/kogami_psychopass.jpg
Executable file
BIN
config/backgrounds/kogami_psychopass.jpg
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 191 KiB |
@ -51,7 +51,7 @@ wallframe {
|
||||
padding: 0em;
|
||||
expand: false;
|
||||
background-color: @main-bg;
|
||||
background-image: url("~/.dotfiles/config/backgrounds/aurora_borealis.png", width);
|
||||
background-image: url("~/.dotfiles/config/backgrounds/aurora_borealis.png", height);
|
||||
}
|
||||
|
||||
|
||||
|
||||
BIN
docs/demo.mp4
Normal file
BIN
docs/demo.mp4
Normal file
Binary file not shown.
@ -68,7 +68,7 @@
|
||||
editor = "neovim"; # neovim, vscode
|
||||
|
||||
# List all themes: $ nix build nixpkgs#base16-schemes && ls result/share/themes
|
||||
theme = "catppuccin-mocha"; # tokyo-night-dark, one-dark
|
||||
theme = "catppuccin-mocha"; # catppuccin-mocha, tokyo-night-dark, one-dark
|
||||
background = "aurora_borealis.png";
|
||||
|
||||
plasma = false;
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
libreoffice
|
||||
localsend
|
||||
kdePackages.kdeconnect-kde
|
||||
vlc
|
||||
mpv
|
||||
openrocket
|
||||
spotube
|
||||
inkscape
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
cliphist
|
||||
(writeShellScriptBin "clipboard" ''
|
||||
export confDir="''${XDG_CONFIG_HOME:-$HOME/.config}"
|
||||
roconf="''${confDir}/rofi/clipboard.rasi"
|
||||
roconf="''${confDir}/rofi/cliboard.rasi"
|
||||
favoritesFile="''${HOME}/.cliphist_favorites"
|
||||
|
||||
if printenv HYPRLAND_INSTANCE_SIGNATURE &> /dev/null; then
|
||||
|
||||
@ -246,7 +246,7 @@
|
||||
"$mod, Tab, exec, ${pkgs.toybox}/bin/pkill -x rofi || ${pkgs.rofi-wayland}/bin/rofi -show window"
|
||||
"$mod+Shift, E, exec, ${pkgs.toybox}/bin/pkill -x rofi || ${pkgs.rofi-wayland}/bin/rofi -show emoji"
|
||||
# Clipboard manager
|
||||
"$mod, V, exec, ${pkgs.toybox}/bin/pkill -x rofi || clipboard"
|
||||
"$mod, V, exec, ${pkgs.toybox}/bin/pkill -x rofi || clipboard d"
|
||||
|
||||
# Grouped Windows
|
||||
"$mod CTRL, H, changegroupactive, b"
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
userSettings,
|
||||
...
|
||||
}: {
|
||||
options = {
|
||||
@ -58,7 +59,7 @@
|
||||
orientation = mkLiteral "vertical";
|
||||
children = ["inputbar" "listbox"];
|
||||
background-color = mkLiteral "transparent";
|
||||
background-image = mkLiteral "url(\"~/.dotfiles/config/backgrounds/aurora_borealis.png\", height)";
|
||||
background-image = mkLiteral "url(\"~/.dotfiles/config/backgrounds/${userSettings.background}\", HEIGHT)";
|
||||
};
|
||||
|
||||
# Input bar settings
|
||||
@ -68,7 +69,7 @@
|
||||
padding = mkLiteral "5em";
|
||||
children = ["entry"];
|
||||
background-color = mkLiteral "transparent";
|
||||
background-image = mkLiteral "url(\"~/.dotfiles/config/backgrounds/aurora_borealis.png\", width)";
|
||||
background-image = mkLiteral "url(\"~/.dotfiles/config/backgrounds/${userSettings.background}\", WIDTH)";
|
||||
};
|
||||
|
||||
# Entry field settings
|
||||
|
||||
@ -225,9 +225,9 @@
|
||||
format = "{}";
|
||||
rotate = 0;
|
||||
exec = "echo ; echo clipboard history";
|
||||
on-click = "sleep 0.1 && cliphist.sh c";
|
||||
on-click-right = "sleep 0.1 && cliphist.sh d";
|
||||
on-click-middle = "sleep 0.1 && cliphist.sh w";
|
||||
on-click = "sleep 0.1 && clipboard d";
|
||||
on-click-right = "sleep 0.1 && clipboard";
|
||||
on-click-middle = "sleep 0.1 && clipboard";
|
||||
interval = 86400; # once every day;
|
||||
tooltip = true;
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user