Bohdan's terminal configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

partially resurrected the old Hyprland-based setup

with intent of migrating from Waybar/eww to Quickshell

bpavuk 6e772b6e d8e5269a

+33 -1
+2
nixos/home/life/hyprland/default.nix
··· 3 3 { 4 4 imports = [ 5 5 ./swww_waypaper.nix 6 + ./waybar.nix 7 + ./kitty.nix 6 8 ]; 7 9 8 10 home.pointerCursor = {
+10
nixos/home/life/hyprland/kitty.nix
··· 1 + { pkgs, lib, config, ... }: 2 + 3 + { 4 + programs.kitty.enable = true; 5 + 6 + xdg.configFile."kitty/" = { 7 + source = ../../../../window_manager/.config/kitty; 8 + recursive = true; 9 + }; 10 + }
+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