Compare commits

...

5 Commits

Author SHA1 Message Date
ca1745a8d9 video added 2024-12-29 20:53:30 +01:00
672e091d1c rofi style update 2024-12-29 17:19:13 +01:00
9e509537d8 fixes 2024-12-29 17:13:31 +01:00
1163e12cea fix clipboard manager 2024-12-29 16:57:33 +01:00
e0b5988688 kogami bg added 2024-12-29 16:20:42 +01:00
9 changed files with 26 additions and 25 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 KiB

View File

@ -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

Binary file not shown.

View File

@ -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;

View File

@ -21,7 +21,7 @@
libreoffice
localsend
kdePackages.kdeconnect-kde
vlc
mpv
openrocket
spotube
inkscape

View File

@ -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

View File

@ -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"

View File

@ -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

View File

@ -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;
};