update
This commit is contained in:
parent
2829c5cdae
commit
f32827833d
47
flake.lock
47
flake.lock
|
@ -1,5 +1,23 @@
|
||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
|
"ags": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": "nixpkgs"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1718921313,
|
||||||
|
"narHash": "sha256-TFJah1RW5qnYW7kajjAFPAS5j/0q0R3vz9zPjrRA0Mc=",
|
||||||
|
"owner": "Aylur",
|
||||||
|
"repo": "ags",
|
||||||
|
"rev": "646d5ad073ff7f8b1d50cfbd40f5b8a250fcd59d",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "Aylur",
|
||||||
|
"repo": "ags",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"base16-schemes": {
|
"base16-schemes": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
@ -57,15 +75,16 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1719915469,
|
"lastModified": 1718714799,
|
||||||
"narHash": "sha256-dNQPEges+os5o3SpV3gkIJk2wNX+eIzv6D48S3WxBRo=",
|
"narHash": "sha256-FUZpz9rg3gL8NVPKbqU8ei1VkPLsTIfAJ2fdAf5qjak=",
|
||||||
"owner": "nixos",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "88d829e52cfbeee71d81704ce28f5b439f6dea16",
|
"rev": "c00d587b1a1afbf200b1d8f0b0e4ba9deb1c7f0e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nixos",
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-unstable",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
@ -85,11 +104,27 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nixpkgs_2": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1719915469,
|
||||||
|
"narHash": "sha256-dNQPEges+os5o3SpV3gkIJk2wNX+eIzv6D48S3WxBRo=",
|
||||||
|
"owner": "nixos",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "88d829e52cfbeee71d81704ce28f5b439f6dea16",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nixos",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"ags": "ags",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
"nix-colors": "nix-colors",
|
"nix-colors": "nix-colors",
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs_2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs";
|
nixpkgs.url = "github:nixos/nixpkgs";
|
||||||
nix-colors.url = "github:misterio77/nix-colors";
|
nix-colors.url = "github:misterio77/nix-colors";
|
||||||
|
ags.url = "github:Aylur/ags";
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
url = "github:nix-community/home-manager";
|
||||||
|
|
8
home/ags/default.nix
Normal file
8
home/ags/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{pkgs, ...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
programs.ags {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -3,14 +3,16 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./rofi
|
./rofi
|
||||||
./waybar
|
./waybar
|
||||||
./alacritty
|
./alacritty
|
||||||
./hyprland
|
./hyprland
|
||||||
./zsh
|
./zsh
|
||||||
./gtk
|
./gtk
|
||||||
./git
|
./git
|
||||||
inputs.nix-colors.homeManagerModules.default
|
./ags
|
||||||
];
|
inputs.nix-colors.homeManagerModules.default
|
||||||
|
inputs.ags.homeManagerModules.default
|
||||||
|
];
|
||||||
|
|
||||||
home.username = "joy";
|
home.username = "joy";
|
||||||
home.homeDirectory = "/home/joy";
|
home.homeDirectory = "/home/joy";
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
rofi-wayland
|
rofi-wayland
|
||||||
pavucontrol
|
pavucontrol
|
||||||
|
@ -17,125 +19,128 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
"$mod" = "SUPER";
|
"$mod" = "SUPER";
|
||||||
|
|
||||||
|
dwindle = {
|
||||||
|
pseudotile = true;
|
||||||
|
preserve_split = true;
|
||||||
|
};
|
||||||
|
|
||||||
dwindle = {
|
monitor = "DP-1,2560x1440@165.00Hz,0x0,1,bitdepth,10";
|
||||||
pseudotile = true;
|
|
||||||
preserve_split = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
monitor = "DP-1,2560x1440@165.00Hz,0x0,1,bitdepth,10";
|
|
||||||
|
|
||||||
env = [
|
env = [
|
||||||
"HYPRCURSOR_THEME = Bibata-Modern-Ice"
|
"HYPRCURSOR_THEME = Bibata-Modern-Ice"
|
||||||
"HYPRCURSOR_SIZE = 24"
|
"HYPRCURSOR_SIZE = 24"
|
||||||
];
|
];
|
||||||
|
|
||||||
exec-once = [
|
exec-once = [
|
||||||
"lxqt-policykit-agent &"
|
"lxqt-policykit-agent &"
|
||||||
"swww init &"
|
"swww init &"
|
||||||
"swww img ~/nix/home/hyprland/wallpaper.png &"
|
"swww img ~/nix/home/hyprland/wallpaper.png &"
|
||||||
"waybar &"
|
"waybar &"
|
||||||
"wl-paste --type text --watch cliphist store"
|
"wl-paste --type text --watch cliphist store"
|
||||||
"wl-paste --type image --watch cliphist store"
|
"wl-paste --type image --watch cliphist store"
|
||||||
"screen -dmS cmus cmus &"
|
"screen -dmS cmus cmus &"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
bind = [
|
bind = [
|
||||||
|
|
||||||
# launch Apps
|
# launch Apps
|
||||||
"$mod, TAB, exec, alacritty"
|
"$mod, TAB, exec, alacritty"
|
||||||
"$mod, E, exec, nemo"
|
"$mod, E, exec, nemo"
|
||||||
"$mod, S, exec, brave"
|
"$mod, S, exec, brave"
|
||||||
"$mod, X, exec, keepassxc"
|
"$mod, X, exec, keepassxc"
|
||||||
"$mod, D, exec, alacritty -e screen -r cmus"
|
"$mod, D, exec, alacritty -e screen -r cmus"
|
||||||
"$mod, F, exec, freetube"
|
"$mod, F, exec, freetube"
|
||||||
"$mod, M, exec, thunderbird"
|
"$mod, M, exec, thunderbird"
|
||||||
"$mod, C, exec, hyprpicker -a"
|
"$mod, C, exec, hyprpicker -a"
|
||||||
"$mod, A, exec, rofi -show drun"
|
"$mod, A, exec, rofi -show drun"
|
||||||
"$mod+Shift, Z, exec, grim - | swappy -f -"
|
"$mod+Shift, Z, exec, grim - | swappy -f -"
|
||||||
"$mod, Z, exec, sh ~/nix/home/hyprland/screen.sh"
|
"$mod, Z, exec, sh ~/nix/home/hyprland/screen.sh"
|
||||||
"$mod, V, exec, cliphist list | rofi -dmenu | cliphist decode | wl-copy"
|
"$mod, V, exec, cliphist list | rofi -dmenu | cliphist decode | wl-copy"
|
||||||
|
|
||||||
# controles
|
# controles
|
||||||
"$mod, Q, killactive"
|
"$mod, Q, killactive"
|
||||||
"$mod, W, togglefloating"
|
"$mod, W, togglefloating"
|
||||||
"$mod, R, togglesplit"
|
"$mod, R, togglesplit"
|
||||||
"$mod, L, exec, amixer -q sset Master 5%+"
|
"$mod, L, exec, amixer -q sset Master 5%+"
|
||||||
"$mod, K, exec, amixer -q sset Master 5%-"
|
"$mod, K, exec, amixer -q sset Master 5%-"
|
||||||
"$mod+shift, Y, exec, systemctl suspend"
|
"$mod+shift, Y, exec, systemctl suspend"
|
||||||
"$mod+shift, M, exit, hyprland"
|
"$mod+shift, M, exit, hyprland"
|
||||||
|
|
||||||
|
# cmus
|
||||||
|
"$mod, P, exec, cmus-remote --pause"
|
||||||
|
"$mod, comma, exec, cmus-remote --prev"
|
||||||
|
"$mod, period, exec, cmus-remote --next"
|
||||||
|
"$mod, equal, exec, cmus-remote -v +5%"
|
||||||
|
"$mod, minus, exec, cmus-remote -v -5%"
|
||||||
|
|
||||||
# mocp
|
# Move focus
|
||||||
"$mod, P, exec, cmus-remote --pause"
|
"$mod, Return, fullscreen"
|
||||||
"$mod, comma, exec, cmus-remote --prev"
|
"$mod, left, movefocus, l"
|
||||||
"$mod, period, exec, cmus-remote --next"
|
"$mod, right, movefocus, r"
|
||||||
"$mod, equal, exec, cmus-remote -v +5%"
|
"$mod, up, movefocus, u"
|
||||||
"$mod, minus, exec, cmus-remote -v -5%"
|
"$mod, down, movefocus, d"
|
||||||
|
|
||||||
# Move focus with mainMod + arrow keys
|
# Switch workspaces
|
||||||
"$mod, Return, fullscreen"
|
"$mod, 1, workspace, 1"
|
||||||
"$mod, left, movefocus, l"
|
"$mod, 2, workspace, 2"
|
||||||
"$mod, right, movefocus, r"
|
"$mod, 3, workspace, 3"
|
||||||
"$mod, up, movefocus, u"
|
"$mod, 4, workspace, 4"
|
||||||
"$mod, down, movefocus, d"
|
"$mod, 5, workspace, 5"
|
||||||
|
"$mod, 6, workspace, 6"
|
||||||
|
"$mod, 7, workspace, 7"
|
||||||
|
"$mod, 8, workspace, 8"
|
||||||
|
"$mod, 9, workspace, 9"
|
||||||
|
"$mod, 0, workspace, 10"
|
||||||
|
|
||||||
# Switch workspaces with mainMod + [0-9]
|
# Move active window to a workspace
|
||||||
"$mod, 1, workspace, 1"
|
"$mod+Shift, 1, movetoworkspace, 1"
|
||||||
"$mod, 2, workspace, 2"
|
"$mod+Shift, 2, movetoworkspace, 2"
|
||||||
"$mod, 3, workspace, 3"
|
"$mod+Shift, 3, movetoworkspace, 3"
|
||||||
"$mod, 4, workspace, 4"
|
"$mod+Shift, 4, movetoworkspace, 4"
|
||||||
"$mod, 5, workspace, 5"
|
"$mod+Shift, 5, movetoworkspace, 5"
|
||||||
"$mod, 6, workspace, 6"
|
"$mod+Shift, 6, movetoworkspace, 6"
|
||||||
"$mod, 7, workspace, 7"
|
"$mod+Shift, 7, movetoworkspace, 7"
|
||||||
"$mod, 8, workspace, 8"
|
"$mod+Shift, 8, movetoworkspace, 8"
|
||||||
"$mod, 9, workspace, 9"
|
"$mod+Shift, 9, movetoworkspace, 9"
|
||||||
"$mod, 0, workspace, 10"
|
"$mod+Shift, 0, movetoworkspace, 10"
|
||||||
|
];
|
||||||
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
|
||||||
"$mod+Shift, 1, movetoworkspace, 1"
|
|
||||||
"$mod+Shift, 2, movetoworkspace, 2"
|
|
||||||
"$mod+Shift, 3, movetoworkspace, 3"
|
|
||||||
"$mod+Shift, 4, movetoworkspace, 4"
|
|
||||||
"$mod+Shift, 5, movetoworkspace, 5"
|
|
||||||
"$mod+Shift, 6, movetoworkspace, 6"
|
|
||||||
"$mod+Shift, 7, movetoworkspace, 7"
|
|
||||||
"$mod+Shift, 8, movetoworkspace, 8"
|
|
||||||
"$mod+Shift, 9, movetoworkspace, 9"
|
|
||||||
"$mod+Shift, 0, movetoworkspace, 10"
|
|
||||||
];
|
|
||||||
|
|
||||||
bindm= [
|
bindm= [
|
||||||
"$mod, mouse:272, movewindow"
|
"$mod, mouse:272, movewindow"
|
||||||
"$mod, mouse:273, resizewindow"
|
"$mod, mouse:273, resizewindow"
|
||||||
];
|
];
|
||||||
|
|
||||||
general = {
|
general = {
|
||||||
gaps_in = 1;
|
gaps_in = 0;
|
||||||
gaps_out = 1;
|
gaps_out = 0;
|
||||||
border_size = 2;
|
border_size = 3;
|
||||||
allow_tearing = false;
|
"col.active_border" = "0xFFEBDBB2";
|
||||||
layout = "dwindle";
|
"col.inactive_border" = "0xFF363537";
|
||||||
|
allow_tearing = false;
|
||||||
|
layout = "dwindle";
|
||||||
|
};
|
||||||
|
|
||||||
|
misc ={
|
||||||
|
disable_hyprland_logo = true;
|
||||||
|
disable_splash_rendering = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
decoration = {
|
||||||
|
rounding = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
input = {
|
||||||
|
kb_layout = "us,de";
|
||||||
|
kb_variant = ",qwerty";
|
||||||
|
kb_options = "grp:alt_shift_toggle";
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
misc ={
|
|
||||||
disable_hyprland_logo = true;
|
|
||||||
disable_splash_rendering = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
decoration = {
|
|
||||||
rounding = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
input = {
|
|
||||||
kb_layout = "us,de";
|
|
||||||
kb_variant = ",qwerty";
|
|
||||||
kb_options = "grp:alt_shift_toggle";
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
21
home/waybar/cmus.sh
Executable file
21
home/waybar/cmus.sh
Executable file
|
@ -0,0 +1,21 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Fetch the status of cmus
|
||||||
|
status=$(cmus-remote -Q)
|
||||||
|
|
||||||
|
if [[ $? -ne 0 ]]; then
|
||||||
|
echo "No song playing"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Extract artist, album, and title information
|
||||||
|
artist=$(echo "$status" | grep 'tag artist' | cut -d ' ' -f 3-)
|
||||||
|
title=$(echo "$status" | grep 'tag title' | cut -d ' ' -f 3-)
|
||||||
|
|
||||||
|
# Display the song information
|
||||||
|
if [ -n "$artist" ] && [ -n "$title" ]; then
|
||||||
|
echo "$artist - $title"
|
||||||
|
else
|
||||||
|
echo "No song playing"
|
||||||
|
fi
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
|
|
||||||
clock = {
|
clock = {
|
||||||
actions = {
|
actions = {
|
||||||
on-click-backward = "tz_down";
|
|
||||||
on-click-forward = "tz_up";
|
on-click-forward = "tz_up";
|
||||||
on-click-right = "mode";
|
on-click-right = "mode";
|
||||||
on-scroll-down = "shift_down";
|
on-scroll-down = "shift_down";
|
||||||
|
@ -68,7 +67,7 @@ window#waybar {
|
||||||
* Workspaces
|
* Workspaces
|
||||||
* ----------------------------------------------------- */
|
* ----------------------------------------------------- */
|
||||||
#workspaces {
|
#workspaces {
|
||||||
background: #fb4934;
|
background: #458588;
|
||||||
margin: 5px 3px 5px 12px;
|
margin: 5px 3px 5px 12px;
|
||||||
padding: 0px 1px;
|
padding: 0px 1px;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
|
@ -83,14 +82,92 @@ window#waybar {
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
color: #15161e;
|
color: #15161e;
|
||||||
background-color: #fb4934;
|
background-color: #458588;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: all 0.3s ease-in-out;
|
transition: all 0.3s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.active {
|
#workspaces button.active {
|
||||||
color: #15161e;
|
color: #15161e;
|
||||||
background: #fb4934;
|
|
||||||
|
* {
|
||||||
|
border: none;
|
||||||
|
border-radius: 0px;
|
||||||
|
font-family: "Inconsolata";
|
||||||
|
font-size: 16px;
|
||||||
|
min-height: 0;
|
||||||
|
color: #ebdbb2;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar {
|
||||||
|
border-bottom-style: inset;
|
||||||
|
border-bottom: 4px solid #689d6a;
|
||||||
|
background: #1d2021;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces, #clock, #custom-music, #window {
|
||||||
|
font-weight: 800;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Workspace Buttons */
|
||||||
|
#workspaces button label{
|
||||||
|
color: #689d6a;
|
||||||
|
}
|
||||||
|
#workspaces button.focused label {
|
||||||
|
color: #1d2021;
|
||||||
|
}
|
||||||
|
#workspaces button.focused {
|
||||||
|
background: #689d6a;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mode {
|
||||||
|
background-color: #cc241d;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock, #battery, #cpu, #memory, #network, #pulseaudio, #tray, #mode, #idle_inhibitor {
|
||||||
|
padding: 0 5px;
|
||||||
|
margin: 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#idle_inhibitor {
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idle_inhibitor.activated {
|
||||||
|
background-color: #689d6a;
|
||||||
|
color: #1d2021;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#custom-music {
|
||||||
|
color: #b8bb26;
|
||||||
|
margin: 0 15px;
|
||||||
|
padding: 0 20px;
|
||||||
|
border-bottom: 4px solid #b8bb26;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
margin: 0;
|
||||||
|
color: #fabd2f;
|
||||||
|
border-bottom: 4px solid #fabd2f;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#network.disconnected {
|
||||||
|
color: #cc241d;
|
||||||
|
border-bottom: 4px solid #cc241d;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#pulseaudio.muted {
|
||||||
|
padding: 0 20px;
|
||||||
|
color: #cc241d;
|
||||||
|
border-bottom: 4px solid #cc241d;
|
||||||
|
}
|
||||||
|
background: #458588;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
min-width: 40px;
|
min-width: 40px;
|
||||||
transition: all 0.3s ease-in-out;
|
transition: all 0.3s ease-in-out;
|
||||||
|
@ -99,7 +176,7 @@ window#waybar {
|
||||||
|
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
color: #15161e;
|
color: #15161e;
|
||||||
background: #fb4934;
|
background: #458588;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
}
|
}
|
||||||
|
@ -146,7 +223,7 @@ tooltip label {
|
||||||
}
|
}
|
||||||
#clock {
|
#clock {
|
||||||
color: #15161e;
|
color: #15161e;
|
||||||
background: #fabd2f;
|
background: #458588;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
padding: 2px 10px;
|
padding: 2px 10px;
|
||||||
|
@ -194,7 +271,7 @@ tooltip label {
|
||||||
|
|
||||||
#pulseaudio {
|
#pulseaudio {
|
||||||
color: #15161e;
|
color: #15161e;
|
||||||
background: #83a598;
|
background: #458588;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
padding: 2px 10px;
|
padding: 2px 10px;
|
||||||
|
|
39
home/waybar/nohup.out
Normal file
39
home/waybar/nohup.out
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
[2024-07-02 21:51:16.844] [info] Using configuration file /home/joy/.config/waybar/config
|
||||||
|
[2024-07-02 21:51:16.845] [info] Unable to receive desktop appearance: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Settings” on object at path /org/freedesktop/portal/desktop
|
||||||
|
[2024-07-02 21:51:16.845] [info] Using CSS file /home/joy/.config/waybar/style.css
|
||||||
|
[2024-07-02 21:51:16.848] [info] Hyprland IPC starting
|
||||||
|
[2024-07-02 21:51:16.849] [info] Loading persistent workspaces from Hyprland workspace rules
|
||||||
|
sh: line 1: /home/joy/nix/home/waybar/cmus.sh: cannot execute: required file not found
|
||||||
|
[2024-07-02 21:51:16.855] [error] cmus stopped unexpectedly, is it endless?
|
||||||
|
[2024-07-02 21:51:16.867] [warning] Requested height: 14 is less than the minimum height: 27 required by the modules
|
||||||
|
[2024-07-02 21:51:16.867] [info] Bar configured (width: 2560, height: 27) for output: DP-1
|
||||||
|
[2024-07-02 21:51:52.625] [info] Reloading...
|
||||||
|
[2024-07-02 21:51:52.628] [info] Using configuration file /home/joy/.config/waybar/config
|
||||||
|
[2024-07-02 21:51:52.628] [info] Using CSS file /home/joy/.config/waybar/style.css
|
||||||
|
[2024-07-02 21:51:52.633] [info] Reloading...
|
||||||
|
[2024-07-02 21:51:52.635] [info] Loading persistent workspaces from Hyprland workspace rules
|
||||||
|
|
||||||
|
(waybar:29756): GLib-GIO-WARNING **: 21:51:52.644: Invalid id -1200428736 passed to g_bus_unwatch_name()
|
||||||
|
|
||||||
|
(waybar:29756): GLib-GIO-CRITICAL **: 21:51:52.644: g_dbus_interface_skeleton_unexport: assertion 'interface_->priv->connections != NULL' failed
|
||||||
|
[2024-07-02 21:51:52.645] [info] Using configuration file /home/joy/.config/waybar/config
|
||||||
|
[2024-07-02 21:51:52.645] [info] Using CSS file /home/joy/.config/waybar/style.css
|
||||||
|
[2024-07-02 21:51:52.648] [info] Loading persistent workspaces from Hyprland workspace rules
|
||||||
|
[2024-07-02 21:51:52.655] [warning] Requested height: 14 is less than the minimum height: 37 required by the modules
|
||||||
|
[2024-07-02 21:51:52.655] [info] Bar configured (width: 2560, height: 37) for output: DP-1
|
||||||
|
[2024-07-02 21:52:00.848] [info] Using configuration file /home/joy/.config/waybar/config
|
||||||
|
[2024-07-02 21:52:00.850] [info] Unable to receive desktop appearance: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Settings” on object at path /org/freedesktop/portal/desktop
|
||||||
|
[2024-07-02 21:52:00.850] [info] Using CSS file /home/joy/.config/waybar/style.css
|
||||||
|
[2024-07-02 21:52:00.853] [info] Hyprland IPC starting
|
||||||
|
[2024-07-02 21:52:00.854] [info] Loading persistent workspaces from Hyprland workspace rules
|
||||||
|
[2024-07-02 21:52:00.868] [warning] Requested height: 14 is less than the minimum height: 42 required by the modules
|
||||||
|
[2024-07-02 21:52:00.868] [info] Bar configured (width: 2560, height: 42) for output: DP-1
|
||||||
|
[2024-07-02 22:00:47.199] [info] Reloading...
|
||||||
|
[2024-07-02 22:00:47.203] [info] Using configuration file /home/joy/.config/waybar/config
|
||||||
|
[2024-07-02 22:00:47.204] [info] Using CSS file /home/joy/.config/waybar/style.css
|
||||||
|
[2024-07-02 22:00:47.212] [info] Reloading...
|
||||||
|
[2024-07-02 22:00:47.212] [error] style.css:45:0Expected semicolon
|
||||||
|
[2024-07-02 22:01:22.256] [info] Using configuration file /home/joy/.config/waybar/config
|
||||||
|
[2024-07-02 22:01:22.257] [info] Unable to receive desktop appearance: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Settings” on object at path /org/freedesktop/portal/desktop
|
||||||
|
[2024-07-02 22:01:22.257] [info] Using CSS file /home/joy/.config/waybar/style.css
|
||||||
|
[2024-07-02 22:01:22.257] [error] style.css:45:0Expected semicolon
|
Loading…
Reference in a new issue