Bohdan's terminal configuration

waybar

bpavuk.neocities.org 8a871228 ee615393

verified
Changed files
+22 -1
nixos
home
life
window_manager
.config
hypr
hyprland
waybar
+1
nixos/home/life/hyprland/default.nix
··· 2 2 3 3 { 4 4 imports = [ 5 + ./waybar.nix 5 6 ]; 6 7 7 8 home.pointerCursor = {
+17
nixos/home/life/hyprland/waybar.nix
··· 1 + { pkgs, lib, config, ... }: 2 + 3 + { 4 + # Waybar 5 + 6 + programs.waybar.enable = true; 7 + programs.eww.enable = true; 8 + 9 + xdg.configFile."waybar/" = { 10 + source = ../../../../window_manager/.config/waybar; 11 + recursive = true; 12 + }; 13 + xdg.configFile."eww/" = { 14 + source = ../../../../window_manager/.config/eww; 15 + recursive = true; 16 + }; 17 + }
+3
window_manager/.config/hypr/hyprland/autostart.conf
··· 12 12 # eww 13 13 exec-once = eww daemon 14 14 15 + # waybar 16 + exec-once = waybar 17 + 15 18 # clipboard history 16 19 exec-once = wl-paste --type text --watch cliphist store # Stores only text data 17 20 exec-once = wl-paste --type image --watch cliphist store # Stores only image data
+1 -1
window_manager/.config/waybar/scripts/toggle_eww_window.sh
··· 1 - #!/bin/bash 1 + #!/bin/sh 2 2 3 3 stringContain() { case $2 in *$1* ) return 0;; *) return 1;; esac ;} 4 4