This commit is contained in:
Hadi 2024-08-29 22:46:04 +02:00
parent c83e5b2213
commit 48a59c4c55
2 changed files with 230 additions and 148 deletions

View File

@ -6,8 +6,8 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
- [ ] Themes - [ ] Themes
- [ ] Clipse: clipboard manager - [ ] Clipse: clipboard manager
- [ ] Walker launcher implementation
- [ ] Swaync implementation - [ ] Swaync implementation
- [ ] Rofi config
- [ ] Qutebrowser - [ ] Qutebrowser
- [ ] !!! Bitwarden integration (I need this.) - [ ] !!! Bitwarden integration (I need this.)

View File

@ -5,8 +5,53 @@
home.packages = with pkgs; [ hyprpanel ]; home.packages = with pkgs; [ hyprpanel ];
home.file.".cache/ags/hyprpanel/options.json" = { home.file.".cache/ags/hyprpanel/options.json" = {
text = '' text = # json
''
{ {
"bar.layouts": {
"0": {
"left": [
"dashboard",
"workspaces",
"windowtitle"
],
"middle": [
"media"
],
"right": [
"systray",
"network",
"volume",
"bluetooth",
"battery",
"clock",
"notifications"
]
},
"1": {
"left": [
"dashboard",
"workspaces",
"windowtitle"
],
"middle": [
"media"
],
"right": [
"volume",
"clock",
"notifications"
]
},
"2": {
"left": [
],
"middle": [
],
"right": [
]
}
},
"theme.font.name": "${config.var.theme.font}", "theme.font.name": "${config.var.theme.font}",
"theme.font.size": "${toString config.var.theme.bar.font-size}px", "theme.font.size": "${toString config.var.theme.bar.font-size}px",
"theme.bar.outer_spacing": "${ "theme.bar.outer_spacing": "${
@ -28,8 +73,8 @@
"theme.bar.floating": ${ "theme.bar.floating": ${
if config.var.theme.bar.floating then "true" else "false" if config.var.theme.bar.floating then "true" else "false"
}, },
"theme.bar.buttons.padding_x": "0.7rem", "theme.bar.buttons.padding_x": "0.8rem",
"theme.bar.buttons.padding_y": "0.3rem", "theme.bar.buttons.padding_y": "0.4rem",
"theme.bar.margin_top": "1.0em", "theme.bar.margin_top": "1.0em",
@ -63,38 +108,75 @@
"menus.clock.weather.location": "${config.var.location}", "menus.clock.weather.location": "${config.var.location}",
"menus.clock.weather.key": "myapikey", "menus.clock.weather.key": "myapikey",
"menus.clock.weather.unit": "metric", "menus.clock.weather.unit": "metric",
"menus.dashboard.powermenu.avatar.image": "$HOME/.profile_picture.png", "menus.dashboard.powermenu.avatar.image": "${config.var.homeDirectory}/.profile_picture.png",
"menus.dashboard.powermenu.confirmation": false, "menus.dashboard.powermenu.confirmation": false,
"menus.dashboard.shortcuts.left.shortcut1.tooltip": "Microsoft Edgez", "menus.dashboard.shortcuts": {
"menus.dashboard.shortcuts.left.shortcut1.command": "microsoft-edge-stablez", "left": {
"menus.dashboard.shortcuts.left.shortcut1.icon": "󰇩z", "shortcut1": {
"menus.dashboard.shortcuts.left.shortcut2.icon": "z", "icon": "",
"menus.dashboard.shortcuts.left.shortcut2.command": "spotify-launcherz", "command": "qutebrowser",
"menus.dashboard.shortcuts.left.shortcut2.tooltip": "Spotifyz", "tooltip": "Qutebrowser"
"menus.dashboard.shortcuts.left.shortcut3.icon": "z", },
"menus.dashboard.shortcuts.left.shortcut3.command": "discordz", "shortcut2": {
"menus.dashboard.shortcuts.left.shortcut3.tooltip": "Discordz", "icon": "",
"menus.dashboard.shortcuts.left.shortcut4.icon": "z", "command": "spotify",
"menus.dashboard.shortcuts.left.shortcut4.command": "rofi -show drunz", "tooltip": "Spotify"
"menus.dashboard.shortcuts.left.shortcut4.tooltip": "Search Appsz", },
"menus.dashboard.shortcuts.right.shortcut1.icon": "z", "shortcut3": {
"menus.dashboard.shortcuts.right.shortcut1.command": "hyprpicker -az", "icon": "",
"menus.dashboard.shortcuts.right.shortcut1.tooltip": "Color Pickerz", "command": "discord",
"menus.dashboard.shortcuts.right.shortcut3.icon": "󰄀z", "tooltip": "Discord"
"menus.dashboard.shortcuts.right.shortcut3.command": "bash -c \"$HOME/.config/ags/services/snapshot.sh\"z", },
"menus.dashboard.shortcuts.right.shortcut3.tooltip": "Screenshotz", "shortcut4": {
"menus.dashboard.directories.left.directory1.label": "󰉍 Downloadsz", "icon": "",
"menus.dashboard.directories.left.directory1.command": "bash -c \"dolphin $HOME/Downloads/\"z", "command": "rofi -show drun",
"menus.dashboard.directories.left.directory2.label": "󰉏 Videosz", "tooltip": "Search Apps"
"menus.dashboard.directories.left.directory2.command": "bash -c \"dolphin $HOME/Videos/\"z", }
"menus.dashboard.directories.left.directory3.label": "󰚝 Projectsz", },
"menus.dashboard.directories.left.directory3.command": "bash -c \"dolphin $HOME/Projects/\"z", "right": {
"menus.dashboard.directories.right.directory1.label": "󱧶 Documentsz", "shortcut1": {
"menus.dashboard.directories.right.directory1.command": "bash -c \"dolphin $HOME/Documents/\"z", "icon": "",
"menus.dashboard.directories.right.directory2.label": "󰉏 Picturesz", "command": "hyprpicker -a",
"menus.dashboard.directories.right.directory2.command": "bash -c \"dolphin $HOME/Pictures/\"z", "tooltip": "Color Picker"
"menus.dashboard.directories.right.directory3.label": "󱂵 Homez", },
"menus.dashboard.directories.right.directory3.command": "bash -c \"dolphin $HOME/\"z", "shortcut3": {
"icon": "󰄀",
"command": "bash -c \"$HOME/.config/ags/services/snapshot.sh\"",
"tooltip": "Screenshot"
}
}
},
"menus.dashboard.directories": {
"left": {
"directory1": {
"label": "󰉍 Downloads",
"command": "bash -c \"dolphin $HOME/Downloads/\""
},
"directory2": {
"label": "󰉏 Videos",
"command": "bash -c \"dolphin $HOME/Videos/\""
},
"directory3": {
"label": "󰚝 Projects",
"command": "bash -c \"dolphin $HOME/Projects/\""
}
},
"right": {
"directory1": {
"label": "󱧶 Documents",
"command": "bash -c \"dolphin $HOME/Documents/\""
},
"directory2": {
"label": "󰉏 Pictures",
"command": "bash -c \"dolphin $HOME/Pictures/\""
},
"directory3": {
"label": "󱂵 Home",
"command": "bash -c \"dolphin $HOME/\""
}
}
},
"theme.bar.menus.monochrome": true, "theme.bar.menus.monochrome": true,
"wallpaper.enable": false, "wallpaper.enable": false,
"theme.bar.menus.background": "#${config.var.theme.colors.bg}", "theme.bar.menus.background": "#${config.var.theme.colors.bg}",