added a second bar and adjusted autostart for it

This commit is contained in:
2025-03-08 09:11:03 +01:00
parent c675f784ad
commit 228b8700a3
18 changed files with 180 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Name=Nextcloud
GenericName=File Synchronizer
Exec="/usr/bin/nextcloud" --background
Terminal=false
Icon=Nextcloud
Categories=Network
Type=Application
StartupNotify=false
X-GNOME-Autostart-enabled=true
X-GNOME-Autostart-Delay=10

View File

@@ -0,0 +1,8 @@
[Desktop Entry]
Name=Easy Effects
Comment=Easy Effects Service
Exec=easyeffects --gapplication-service
Icon=com.github.wwmm.easyeffects
StartupNotify=false
Terminal=false
Type=Application

View File

@@ -0,0 +1,4 @@
[Desktop Entry]
Exec=/home/mpuchstein/.local/bin/eww open-many topbar_DP-2 topbar_DP-3
Name=eww
Type=Application

View File

@@ -0,0 +1,4 @@
[Desktop Entry]
Exec=/home/mpuchstein/.local/bin/hyprman -d
Name=hyprman
Type=Application

View File

@@ -0,0 +1,15 @@
[Desktop Entry]
Icon=/home/mpuchstein/.local/share/JetBrains/Toolbox/toolbox.svg
Exec=/home/mpuchstein/.local/share/JetBrains/Toolbox/bin/jetbrains-toolbox --minimize
Version=1.0
Type=Application
Categories=Development
Name=JetBrains Toolbox
StartupWMClass=jetbrains-toolbox
Terminal=false
MimeType=x-scheme-handler/jetbrains;
X-GNOME-Autostart-enabled=true
StartupNotify=false
X-GNOME-Autostart-Delay=10
X-MATE-Autostart-Delay=10
X-KDE-autostart-after=panel

View File

@@ -0,0 +1,5 @@
[Desktop Entry]
Exec=/usr/bin/nm-applet --indicator
Name=nm-applet
Comment=network monitor and control GUI applet
Type=Application

View File

@@ -0,0 +1,17 @@
[Desktop Entry]
Name=KeePassXC
GenericName=Password Manager
Exec=keepassxc
TryExec=keepassxc
Icon=keepassxc
StartupWMClass=keepassxc
StartupNotify=true
Terminal=false
Type=Application
Version=1.0
Categories=Utility;Security;Qt;
MimeType=application/x-keepass2;
X-GNOME-Autostart-enabled=true
X-GNOME-Autostart-Delay=2
X-KDE-autostart-after=panel
X-LXQt-Need-Tray=true

View File

@@ -0,0 +1,5 @@
[Desktop Entry]
Exec=/usr/bin/qpwgraph -m /home/mpuchstein/.config/qpwgraph/default.qpwgraph
Name=qpwgraph
Comment=A PipeWire Graph Qt GUI Interface
Type=Application

View File

@@ -0,0 +1,4 @@
[Desktop Entry]
Exec=/usr/bin/signal-desktop
Name=signal-desktop
Type=Application

View File

@@ -0,0 +1,4 @@
[Desktop Entry]
Exec=/usr/bin/swayosd-server
Name=swayosd-server
Type=Application

View File

@@ -0,0 +1,7 @@
[Desktop Entry]
Name=Walker
Comment=Walker Service
Exec=walker --gapplication-service
StartupNotify=false
Terminal=false
Type=Application

View File

@@ -1 +1,4 @@
(include "./widgets.yuck")
(include "./topbar_dp2.yuck") (include "./topbar_dp2.yuck")
(include "./topbar_dp3.yuck")

View File

@@ -1,5 +1,3 @@
(include "./widgets.yuck")
(defwindow topbar_DP-2 (defwindow topbar_DP-2
:monitor "DP-2" :monitor "DP-2"
:geometry (geometry :x "0%" :geometry (geometry :x "0%"

View File

@@ -0,0 +1,47 @@
@import 'widgets';
* {
all: unset;
}
tooltip {
background: #2E3440;
color: #E5E6E7;
border-radius: 1.5rem 1rem;
border: 1px solid #6F7175;
}
.popup {
background: #2E3440;
color: #E5E6E7;
border: 1px solid #6F7175;
}
.popup menuitem:hover {
background: grey;
}
window {
background: transparent;
color: transparent;
* {
font-family: 'Inconsolata Go Nerd Font';
font-size: 0.85rem;
border-radius: 1.5rem 1rem;
padding: 2px 6px;
}
/* Modules */
.left {
//background: orange;
}
.center {
//background: blue;
}
.right {
//background: yellow;
}
}

View File

@@ -0,0 +1,44 @@
(defwindow topbar_DP-3
:monitor "DP-3"
:geometry (geometry :x "0%"
:y "0%"
:width "90%"
:height "10px"
:anchor "top center")
:stacking "bg"
:exclusive true
:reserve (struts :side "top" :distance "4%")
:windowtype "dock"
(bar0))
(defwidget bar0 []
(centerbox :orientation "h"
(left)
(center)
(right)))
(defwidget left []
(box :orientation 'h'
:class: 'left'
:space-evenly false
:spacing 5
:halign 'start'
(hypr_workspaces)))
(defwidget center []
(box :orientation 'h'
:class 'center'
:space-evenly false
:spacing 5
(sysmon)))
(defwidget right []
(box
:orientation 'h'
:class 'right'
:space-evenly false
:spacing 5
:halign 'end'
(media)
(datetime)))

View File

@@ -13,7 +13,7 @@ source = ~/.config/hypr/workspaces.conf
# Autostart necessary processes (like notifications daemons, status bars, etc.) # Autostart necessary processes (like notifications daemons, status bars, etc.)
# Or execute your favorite apps at launch like this: # Or execute your favorite apps at launch like this:
source = ~/.config/hypr/hyprland.d/autostart.conf source = ~/.config/hypr/conf.d/autostart.conf
############################# #############################
### ENVIRONMENT VARIABLES ### ### ENVIRONMENT VARIABLES ###
@@ -176,7 +176,7 @@ gestures {
### KEYBINDINGS ### ### KEYBINDINGS ###
################### ###################
source = ~/.config/hypr/hyprland.d/keybinds.conf source = ~/.config/hypr/conf.d/keybinds.conf
############################## ##############################
### WINDOWS AND WORKSPACES ### ### WINDOWS AND WORKSPACES ###