cosmetics
This commit is contained in:
parent
32251a4b45
commit
2ddcabb376
4 changed files with 14 additions and 17 deletions
|
@ -1,39 +1,33 @@
|
||||||
{
|
{
|
||||||
// -------------------------------------------------------------------------
|
|
||||||
// Global configuration
|
|
||||||
// -------------------------------------------------------------------------
|
|
||||||
|
|
||||||
"layer": "top",
|
"layer": "top",
|
||||||
|
|
||||||
"position": "top",
|
"position": "top",
|
||||||
|
|
||||||
// If height property would be not present, it'd be calculated dynamically
|
// If height property would be not present, it'd be calculated dynamically
|
||||||
"height": 30,
|
"height": 20,
|
||||||
|
|
||||||
"modules-left": [
|
"modules-left": [
|
||||||
"sway/workspaces",
|
"sway/workspaces",
|
||||||
"sway/mode"
|
"sway/mode"
|
||||||
],
|
],
|
||||||
|
|
||||||
"modules-center": [
|
"modules-center": [
|
||||||
"sway/window"
|
"sway/window"
|
||||||
],
|
],
|
||||||
|
|
||||||
"modules-right": [
|
"modules-right": [
|
||||||
"network",
|
"network",
|
||||||
"memory",
|
"memory",
|
||||||
"cpu",
|
"cpu",
|
||||||
"temperature",
|
"temperature",
|
||||||
"custom/keyboard-layout",
|
|
||||||
"battery",
|
"battery",
|
||||||
"tray",
|
"tray",
|
||||||
|
"pulseaudio",
|
||||||
"clock#date",
|
"clock#date",
|
||||||
"clock#time"
|
"clock#time"
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------
|
|
||||||
// Modules
|
|
||||||
// -------------------------------------------------------------------------
|
|
||||||
|
|
||||||
"battery": {
|
"battery": {
|
||||||
"interval": 10,
|
"interval": 10,
|
||||||
"states": {
|
"states": {
|
||||||
|
@ -56,7 +50,7 @@
|
||||||
|
|
||||||
"clock#time": {
|
"clock#time": {
|
||||||
"interval": 1,
|
"interval": 1,
|
||||||
"format": "{:%H:%M:%S}",
|
"format": "{:%H:%M}",
|
||||||
"tooltip": false
|
"tooltip": false
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
background: #323232;
|
background: #323232;
|
||||||
color: white;
|
color: white;
|
||||||
font-family: Cantarell, Noto Sans, sans-serif;
|
font-family: Cantarell, Noto Sans, sans-serif;
|
||||||
font-size: 13px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Each module */
|
/* Each module */
|
||||||
|
|
|
@ -19,12 +19,12 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
zoom-us
|
mindforger
|
||||||
|
zoom-us ssb-patchwork
|
||||||
passff-host
|
passff-host
|
||||||
gnome3.gnome-screenshot gsettings-desktop-schemas
|
gnome3.gnome-screenshot gsettings-desktop-schemas
|
||||||
apvlv xidlehook
|
apvlv xidlehook
|
||||||
fontconfig xclip gimp glxinfo
|
fontconfig xclip gimp glxinfo
|
||||||
mindforger
|
|
||||||
evince signal-desktop
|
evince signal-desktop
|
||||||
vlc
|
vlc
|
||||||
jetbrains.goland jetbrains.clion jetbrains.idea-ultimate android-studio
|
jetbrains.goland jetbrains.clion jetbrains.idea-ultimate android-studio
|
||||||
|
|
|
@ -31,18 +31,21 @@ in
|
||||||
wrapperFeatures.base = true;
|
wrapperFeatures.base = true;
|
||||||
wrapperFeatures.gtk = true;
|
wrapperFeatures.gtk = true;
|
||||||
|
|
||||||
|
extraConfig = ''
|
||||||
|
'';
|
||||||
config = {
|
config = {
|
||||||
modifier = "${mod}";
|
modifier = "${mod}";
|
||||||
menu = "${pkgs.wofi}/bin/wofi --show drun,run";
|
menu = "${pkgs.wofi}/bin/wofi --show drun,run";
|
||||||
terminal = "${pkgs.alacritty}/bin/alacritty";
|
terminal = "${pkgs.alacritty}/bin/alacritty";
|
||||||
workspaceLayout = "tabbed";
|
workspaceLayout = "tabbed";
|
||||||
|
window = {
|
||||||
|
hideEdgeBorders = "both";
|
||||||
|
titlebar = false;
|
||||||
|
};
|
||||||
bars = [
|
bars = [
|
||||||
{
|
{
|
||||||
position = "top";
|
position = "top";
|
||||||
colors.background= "#002b36";
|
|
||||||
fonts = [ "Fira Code Nerd Font 10" ];
|
|
||||||
command = "${pkgs.waybar}/bin/waybar";
|
command = "${pkgs.waybar}/bin/waybar";
|
||||||
trayOutput = "primary";
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
startup = [
|
startup = [
|
||||||
|
|
Loading…
Reference in a new issue