feat: modified AGS bar styling
This commit is contained in:
parent
a88e7c28a5
commit
9fec340586
13 changed files with 238 additions and 184 deletions
|
@ -27,6 +27,7 @@
|
||||||
myEmail = "z.liu@outlook.com.gr";
|
myEmail = "z.liu@outlook.com.gr";
|
||||||
myAutostartCommands = [
|
myAutostartCommands = [
|
||||||
"fcitx5"
|
"fcitx5"
|
||||||
|
"${pkgs.udiskie}/bin/udiskie"
|
||||||
];
|
];
|
||||||
myConfigLocation = "/home/${myUserName}/nix-conf";
|
myConfigLocation = "/home/${myUserName}/nix-conf";
|
||||||
};
|
};
|
||||||
|
|
|
@ -12,4 +12,4 @@ if you do not want typechecking only suggestions
|
||||||
```
|
```
|
||||||
|
|
||||||
types are symlinked to:
|
types are symlinked to:
|
||||||
/nix/store/1yw1cklb7s6snf7x2ahrbgkbs1vgrfyk-ags-1.8.2/share/com.github.Aylur.ags/types
|
/home/stvnliu/.nix-profile/share/com.github.Aylur.ags/types
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
const hyprland = await Service.import("hyprland")
|
const hyprland = await Service.import("hyprland")
|
||||||
const notifications = await Service.import("notifications")
|
// const notifications = await Service.import("notifications")
|
||||||
const mpris = await Service.import("mpris")
|
const mpris = await Service.import("mpris")
|
||||||
const audio = await Service.import("audio")
|
const audio = await Service.import("audio")
|
||||||
const battery = await Service.import("battery")
|
const battery = await Service.import("battery")
|
||||||
const systemtray = await Service.import("systemtray")
|
const systemtray = await Service.import("systemtray")
|
||||||
|
|
||||||
const date = Variable("", {
|
const date = Variable("", {
|
||||||
poll: [1000, 'date "+%H:%M:%S %b %e."'],
|
poll: [1000, 'date "+%H:%M:%S %b %e."'],
|
||||||
})
|
})
|
||||||
|
@ -12,23 +11,30 @@ const date = Variable("", {
|
||||||
// widgets can be only assigned as a child in one container
|
// widgets can be only assigned as a child in one container
|
||||||
// so to make a reuseable widget, make it a function
|
// so to make a reuseable widget, make it a function
|
||||||
// then you can simply instantiate one by calling it
|
// then you can simply instantiate one by calling it
|
||||||
|
const focusedTitle = Widget.Label({
|
||||||
function Workspaces() {
|
label: hyprland.active.client.bind('title'),
|
||||||
const activeId = hyprland.active.workspace.bind("id")
|
visible: hyprland.active.client.bind('address')
|
||||||
const workspaces = hyprland.bind("workspaces")
|
.as(addr => addr !== "0x"),
|
||||||
.as(ws => ws.map(({ id }) => Widget.Button({
|
|
||||||
on_clicked: () => hyprland.messageAsync(`dispatch workspace ${id}`),
|
|
||||||
child: Widget.Label(`${id}`),
|
|
||||||
class_name: activeId.as(i => `${i === id ? "focused" : ""}`),
|
|
||||||
})))
|
|
||||||
|
|
||||||
return Widget.Box({
|
|
||||||
class_name: "workspaces",
|
|
||||||
children: workspaces,
|
|
||||||
})
|
})
|
||||||
}
|
|
||||||
|
|
||||||
|
const dispatch = ws => hyprland.messageAsync(`dispatch workspace ${ws}`);
|
||||||
|
|
||||||
|
const Workspaces = () => Widget.EventBox({
|
||||||
|
onScrollUp: () => dispatch('+1'),
|
||||||
|
onScrollDown: () => dispatch('-1'),
|
||||||
|
child: Widget.Box({
|
||||||
|
children: Array.from({ length: 10 }, (_, i) => i + 1).map(i => Widget.Button({
|
||||||
|
attribute: i,
|
||||||
|
label: `${i}`,
|
||||||
|
onClicked: () => dispatch(i),
|
||||||
|
})),
|
||||||
|
|
||||||
|
// remove this setup hook if you want fixed number of buttons
|
||||||
|
setup: self => self.hook(hyprland, () => self.children.forEach(btn => {
|
||||||
|
btn.visible = hyprland.workspaces.some(ws => ws.id === btn.attribute);
|
||||||
|
})),
|
||||||
|
}),
|
||||||
|
})
|
||||||
function ClientTitle() {
|
function ClientTitle() {
|
||||||
return Widget.Label({
|
return Widget.Label({
|
||||||
class_name: "client-title",
|
class_name: "client-title",
|
||||||
|
@ -47,7 +53,7 @@ function Clock() {
|
||||||
|
|
||||||
// we don't need dunst or any other notification daemon
|
// we don't need dunst or any other notification daemon
|
||||||
// because the Notifications module is a notification daemon itself
|
// because the Notifications module is a notification daemon itself
|
||||||
function Notification() {
|
/*function Notification() {
|
||||||
const popups = notifications.bind("popups")
|
const popups = notifications.bind("popups")
|
||||||
return Widget.Box({
|
return Widget.Box({
|
||||||
class_name: "notification",
|
class_name: "notification",
|
||||||
|
@ -61,7 +67,7 @@ function Notification() {
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
}
|
}*/
|
||||||
|
|
||||||
|
|
||||||
function Media() {
|
function Media() {
|
||||||
|
@ -171,8 +177,7 @@ function Center() {
|
||||||
return Widget.Box({
|
return Widget.Box({
|
||||||
spacing: 8,
|
spacing: 8,
|
||||||
children: [
|
children: [
|
||||||
Media(),
|
Clock(),
|
||||||
Notification(),
|
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -184,7 +189,6 @@ function Right() {
|
||||||
children: [
|
children: [
|
||||||
Volume(),
|
Volume(),
|
||||||
BatteryLabel(),
|
BatteryLabel(),
|
||||||
Clock(),
|
|
||||||
SysTray(),
|
SysTray(),
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
/nix/store/1yw1cklb7s6snf7x2ahrbgkbs1vgrfyk-ags-1.8.2/share/com.github.Aylur.ags/types
|
/home/stvnliu/.nix-profile/share/com.github.Aylur.ags/types
|
|
@ -4,7 +4,15 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
config = {
|
config = {
|
||||||
#home.packages = with pkgs; [ ags ];
|
home.file = {
|
||||||
myAutostartCommands = ["${pkgs.ags}/bin/ags"];
|
"${config.xdg.configHome}/ags" = {
|
||||||
|
source = ./config;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
home.packages = with pkgs; [ags];
|
||||||
|
myAutostartCommands = [
|
||||||
|
#"${pkgs.ags}/bin/ags --init"
|
||||||
|
#"${pkgs.ags}/bin/ags"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 187 KiB After Width: | Height: | Size: 779 KiB |
|
@ -17,11 +17,12 @@
|
||||||
./hypr
|
./hypr
|
||||||
./shells
|
./shells
|
||||||
../../common/variables.nix
|
../../common/variables.nix
|
||||||
#./mako.nix
|
./mako.nix
|
||||||
./wechat
|
./wechat
|
||||||
./editors.nix
|
./editors.nix
|
||||||
./gtk.nix
|
./gtk.nix
|
||||||
./ags
|
./ags
|
||||||
|
./xdg.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
|
@ -57,18 +58,6 @@
|
||||||
# copy wallpaper from assets
|
# copy wallpaper from assets
|
||||||
file = {"wallpaper.png".source = ./assets/gruvbox-wallpaper.png;};
|
file = {"wallpaper.png".source = ./assets/gruvbox-wallpaper.png;};
|
||||||
};
|
};
|
||||||
#programs.neovim = {
|
|
||||||
# enable = true;
|
|
||||||
# viAlias = true;
|
|
||||||
# vimAlias = true;
|
|
||||||
# extraConfig = ''
|
|
||||||
# set number
|
|
||||||
# '';
|
|
||||||
#};
|
|
||||||
programs.thunderbird = {
|
|
||||||
enable = true;
|
|
||||||
profiles.default = {isDefault = true;};
|
|
||||||
};
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
protonvpn-gui
|
protonvpn-gui
|
||||||
devenv
|
devenv
|
||||||
|
@ -80,18 +69,34 @@
|
||||||
qq
|
qq
|
||||||
libreoffice
|
libreoffice
|
||||||
discord
|
discord
|
||||||
zathura
|
#zathura
|
||||||
|
kdePackages.okular
|
||||||
shotwell
|
shotwell
|
||||||
mpv
|
mpv
|
||||||
kdenlive
|
kdenlive
|
||||||
obsidian
|
obsidian
|
||||||
|
pcmanfm
|
||||||
|
udiskie
|
||||||
|
android-file-transfer
|
||||||
|
usbutils
|
||||||
|
mtpfs
|
||||||
|
teams-for-linux
|
||||||
|
sxiv
|
||||||
];
|
];
|
||||||
myAutostartCommands = [
|
myAutostartCommands = [
|
||||||
"${pkgs.clash-verge-rev}/bin/clash-verge"
|
"${pkgs.clash-verge-rev}/bin/clash-verge"
|
||||||
"${pkgs.firefox}/bin/firefox"
|
"${pkgs.firefox}/bin/firefox"
|
||||||
"${pkgs.thunderbird}/bin/thunderbird"
|
"${pkgs.thunderbird}/bin/thunderbird"
|
||||||
];
|
];
|
||||||
programs.git = {
|
|
||||||
|
programs = {
|
||||||
|
home-manager.enable = true;
|
||||||
|
firefox.enable = true;
|
||||||
|
thunderbird = {
|
||||||
|
enable = true;
|
||||||
|
profiles.default = {isDefault = true;};
|
||||||
|
};
|
||||||
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.gitFull;
|
package = pkgs.gitFull;
|
||||||
userName = config.myDisplayName;
|
userName = config.myDisplayName;
|
||||||
|
@ -105,9 +110,7 @@
|
||||||
credential.helper = "libsecret";
|
credential.helper = "libsecret";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
programs.home-manager.enable = true;
|
|
||||||
programs.firefox.enable = true;
|
|
||||||
# Nicely reload system units when changing configs
|
# Nicely reload system units when changing configs
|
||||||
systemd.user.startServices = "sd-switch";
|
systemd.user.startServices = "sd-switch";
|
||||||
services.kanshi = {
|
services.kanshi = {
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
"$mod, D, exec, ${pkgs.fuzzel}/bin/fuzzel"
|
"$mod, D, exec, ${pkgs.fuzzel}/bin/fuzzel"
|
||||||
# firefox quickstart
|
# firefox quickstart
|
||||||
"$mod, F, exec, ${pkgs.firefox}/bin/firefox"
|
"$mod, F, exec, ${pkgs.firefox}/bin/firefox"
|
||||||
|
"$mod, E, exec, ${pkgs.pcmanfm}/bin/pcmanfm"
|
||||||
# foot terminal
|
# foot terminal
|
||||||
''
|
''
|
||||||
$mod, Return, exec, ${pkgs.foot}/bin/foot -f 'BlexMono Nerd Font:size=12' -o colors.alpha=0.85 ${config.myShells.defaultShell}''
|
$mod, Return, exec, ${pkgs.foot}/bin/foot -f 'BlexMono Nerd Font:size=12' -o colors.alpha=0.85 ${config.myShells.defaultShell}''
|
||||||
|
|
16
home-manager/stvnliu/xdg.nix
Normal file
16
home-manager/stvnliu/xdg.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
xdg = {
|
||||||
|
enable = true;
|
||||||
|
mimeApps = {
|
||||||
|
enable = true;
|
||||||
|
defaultApplications = {
|
||||||
|
"application/pdf" = "org.kde.okular.desktop";
|
||||||
|
"image/png" = "sxiv.desktop";
|
||||||
|
"image/jpeg" = "sxiv.desktop";
|
||||||
|
"image/jpg" = "sxiv.desktop";
|
||||||
|
"image/webp" = "sxiv.desktop";
|
||||||
|
"image/heif" = "sxiv.desktop";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -16,6 +16,7 @@
|
||||||
./services/laptop.preset.nix
|
./services/laptop.preset.nix
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
#./ags.nix
|
#./ags.nix
|
||||||
|
./xdg.nix
|
||||||
];
|
];
|
||||||
environment.variables = {
|
environment.variables = {
|
||||||
GDK_SCALE = config.displayScale;
|
GDK_SCALE = config.displayScale;
|
||||||
|
|
|
@ -3,5 +3,6 @@
|
||||||
./nginx.service.nix
|
./nginx.service.nix
|
||||||
./pipewire.service.nix
|
./pipewire.service.nix
|
||||||
./syncthing.service.nix
|
./syncthing.service.nix
|
||||||
|
./misc.service.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
13
nixos/services/misc.service.nix
Normal file
13
nixos/services/misc.service.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{...}: {
|
||||||
|
specialisation.powersave.configuration = {
|
||||||
|
services.auto-cpufreq.enable = true;
|
||||||
|
};
|
||||||
|
services = {
|
||||||
|
upower.enable = true;
|
||||||
|
udisks2.enable = true;
|
||||||
|
#picom.enable = true;
|
||||||
|
#blueman.enable = true;
|
||||||
|
#gnome.gnome-keyring.enable = true;
|
||||||
|
#openssh.enable = true;
|
||||||
|
};
|
||||||
|
}
|
6
nixos/stylix.nix
Normal file
6
nixos/stylix.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
stylix = {
|
||||||
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-medium.yaml";
|
||||||
|
stylix.image = ../home-manager/stvnliu/assets/gruvbox-wallpaper.png;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue