Update
This commit is contained in:
parent
c83e5b2213
commit
48a59c4c55
@ -6,8 +6,8 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
|
||||
- [ ] Themes
|
||||
|
||||
- [ ] Clipse: clipboard manager
|
||||
- [ ] Walker launcher implementation
|
||||
- [ ] Swaync implementation
|
||||
- [ ] Rofi config
|
||||
|
||||
- [ ] Qutebrowser
|
||||
- [ ] !!! Bitwarden integration (I need this.)
|
||||
|
@ -5,8 +5,53 @@
|
||||
home.packages = with pkgs; [ hyprpanel ];
|
||||
|
||||
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.size": "${toString config.var.theme.bar.font-size}px",
|
||||
"theme.bar.outer_spacing": "${
|
||||
@ -28,8 +73,8 @@
|
||||
"theme.bar.floating": ${
|
||||
if config.var.theme.bar.floating then "true" else "false"
|
||||
},
|
||||
"theme.bar.buttons.padding_x": "0.7rem",
|
||||
"theme.bar.buttons.padding_y": "0.3rem",
|
||||
"theme.bar.buttons.padding_x": "0.8rem",
|
||||
"theme.bar.buttons.padding_y": "0.4rem",
|
||||
|
||||
|
||||
"theme.bar.margin_top": "1.0em",
|
||||
@ -63,38 +108,75 @@
|
||||
"menus.clock.weather.location": "${config.var.location}",
|
||||
"menus.clock.weather.key": "myapikey",
|
||||
"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.shortcuts.left.shortcut1.tooltip": "Microsoft Edgez",
|
||||
"menus.dashboard.shortcuts.left.shortcut1.command": "microsoft-edge-stablez",
|
||||
"menus.dashboard.shortcuts.left.shortcut1.icon": "z",
|
||||
"menus.dashboard.shortcuts.left.shortcut2.icon": "z",
|
||||
"menus.dashboard.shortcuts.left.shortcut2.command": "spotify-launcherz",
|
||||
"menus.dashboard.shortcuts.left.shortcut2.tooltip": "Spotifyz",
|
||||
"menus.dashboard.shortcuts.left.shortcut3.icon": "z",
|
||||
"menus.dashboard.shortcuts.left.shortcut3.command": "discordz",
|
||||
"menus.dashboard.shortcuts.left.shortcut3.tooltip": "Discordz",
|
||||
"menus.dashboard.shortcuts.left.shortcut4.icon": "z",
|
||||
"menus.dashboard.shortcuts.left.shortcut4.command": "rofi -show drunz",
|
||||
"menus.dashboard.shortcuts.left.shortcut4.tooltip": "Search Appsz",
|
||||
"menus.dashboard.shortcuts.right.shortcut1.icon": "z",
|
||||
"menus.dashboard.shortcuts.right.shortcut1.command": "hyprpicker -az",
|
||||
"menus.dashboard.shortcuts.right.shortcut1.tooltip": "Color Pickerz",
|
||||
"menus.dashboard.shortcuts.right.shortcut3.icon": "z",
|
||||
"menus.dashboard.shortcuts.right.shortcut3.command": "bash -c \"$HOME/.config/ags/services/snapshot.sh\"z",
|
||||
"menus.dashboard.shortcuts.right.shortcut3.tooltip": "Screenshotz",
|
||||
"menus.dashboard.directories.left.directory1.label": " Downloadsz",
|
||||
"menus.dashboard.directories.left.directory1.command": "bash -c \"dolphin $HOME/Downloads/\"z",
|
||||
"menus.dashboard.directories.left.directory2.label": " Videosz",
|
||||
"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",
|
||||
"menus.dashboard.directories.right.directory1.label": " Documentsz",
|
||||
"menus.dashboard.directories.right.directory1.command": "bash -c \"dolphin $HOME/Documents/\"z",
|
||||
"menus.dashboard.directories.right.directory2.label": " Picturesz",
|
||||
"menus.dashboard.directories.right.directory2.command": "bash -c \"dolphin $HOME/Pictures/\"z",
|
||||
"menus.dashboard.directories.right.directory3.label": " Homez",
|
||||
"menus.dashboard.directories.right.directory3.command": "bash -c \"dolphin $HOME/\"z",
|
||||
"menus.dashboard.shortcuts": {
|
||||
"left": {
|
||||
"shortcut1": {
|
||||
"icon": "",
|
||||
"command": "qutebrowser",
|
||||
"tooltip": "Qutebrowser"
|
||||
},
|
||||
"shortcut2": {
|
||||
"icon": "",
|
||||
"command": "spotify",
|
||||
"tooltip": "Spotify"
|
||||
},
|
||||
"shortcut3": {
|
||||
"icon": "",
|
||||
"command": "discord",
|
||||
"tooltip": "Discord"
|
||||
},
|
||||
"shortcut4": {
|
||||
"icon": "",
|
||||
"command": "rofi -show drun",
|
||||
"tooltip": "Search Apps"
|
||||
}
|
||||
},
|
||||
"right": {
|
||||
"shortcut1": {
|
||||
"icon": "",
|
||||
"command": "hyprpicker -a",
|
||||
"tooltip": "Color Picker"
|
||||
},
|
||||
"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,
|
||||
"wallpaper.enable": false,
|
||||
"theme.bar.menus.background": "#${config.var.theme.colors.bg}",
|
||||
|
Loading…
Reference in New Issue
Block a user