initial commit

This commit is contained in:
Mikkel Harboe Arp Henriksen
2025-06-12 21:52:57 +02:00
parent 4a8d5f6aa6
commit 986a86ee50
8 changed files with 298 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# Stargate Atlantis Farver
general {
gaps_in = 5
gaps_out = 10
border_size = 2
# Klar blå ramme om aktivt vindue med en lys 'glow'
col.active_border = rgba(00a0ffff) rgba(ffffffaa) 45deg
# Sølv/lysegrå ramme om inaktivt vindue
col.inactive_border = rgba(ccccccaa)
}
decoration {
rounding = 3 # Lidt skarpere kanter passer godt til Lantean-design
# ... resten af dine indstillinger ...
# Overvej en hvidlig skygge for at efterligne lys
col.shadow = rgba(fdfdfdaa)
}
exec-once = hyprpaper -c {{ ansible_user_dir }}/.config/hypr/hyprpaper.conf

16
templates/kitty.conf.j2 Normal file
View File

@@ -0,0 +1,16 @@
# Stargate Atlantis Font og Farver
font_family JetBrains Mono Nerd Font
font_size 12.0
# Lys tema med blå tekst
background #e6f7ff /* Meget lys blå/hvid */
foreground #005f87 /* Mørk, læsbar blå */
cursor #00aaff /* Klar blå cursor */
selection_background #00aaff
selection_foreground #ffffff
# Aktivt vindue glow-effekt
active_border_color #00aaff
# Juster gennemsigtighed efter smag
background_opacity 0.85

View File

@@ -0,0 +1,82 @@
{
// Generelle indstillinger for Waybar
"layer": "top",
"position": "top",
"height": 30,
"spacing": 4,
// Moduler placeret til venstre
"modules-left": [
"custom/atlantis-logo",
"hyprland/workspaces"
],
// Modul i midten
"modules-center": [
"clock"
],
// Moduler placeret til højre
"modules-right": [
"pulseaudio",
"network",
"battery",
"tray"
],
// --- Individuel modulkonfiguration ---
"custom/atlantis-logo": {
"format": "ﯓ", // Erstat med et tegn fra din Lantean-skrifttype
"tooltip": false,
"on-click": "wofi --show drun" // Åbner app-menu ved klik
},
"hyprland/workspaces": {
"format": "{icon}",
"format-icons": {
"default": "", // En hul cirkel for inaktiv
"active": "" // En fyldt cirkel for aktiv
},
"on-scroll-up": "hyprctl dispatch workspace e+1",
"on-scroll-down": "hyprctl dispatch workspace e-1"
},
"clock": {
"format": " {:%H:%M:%S}",
"tooltip-format": "<big>{:%A, %d. %B %Y}</big>",
"format-alt": " {:%d/%m-%Y}"
},
"pulseaudio": {
"format": "{volume}% {icon}",
"format-muted": " Muted",
"format-icons": {
"default": ["", ""]
},
"on-click": "pavucontrol"
},
"network": {
"format-wifi": "{essid} ",
"format-ethernet": "{ifname} ",
"format-disconnected": "󰌙",
"tooltip-format-wifi": "Signal: {signalStrength}% @ {frequency}MHz",
"on-click": "nm-connection-editor"
},
"battery": {
"states": {
"warning": 30,
"critical": 15
},
"format": "{capacity}% {icon}",
"format-charging": "{capacity}% ",
"format-icons": ["", "", "", "", ""]
},
"tray": {
"icon-size": 18,
"spacing": 10
}
}

View File

@@ -0,0 +1,31 @@
* {
font-family: 'JetBrains Mono Nerd Font', FontAwesome;
font-size: 16px;
border: none;
border-radius: 0;
}
window#waybar {
/* Semi-transparent hvid/lys baggrund */
background: rgba(220, 230, 240, 0.7);
/* Klar blå tekst */
color: #0088cc;
}
/* Aktiv workspace får en stærkere blå farve */
#workspaces button.active {
color: #00aaff;
background: rgba(0, 136, 204, 0.3);
}
#pulseaudio, #network, #clock, #battery {
padding: 0 10px;
}
/* Her kan du bruge Lantean-fonten til et specielt ikon! */
#custom-atlantis-logo {
font-family: "Navn-på-din-Lantean-font"; /* Erstat med navnet på fonten */
font-size: 22px;
padding-right: 15px;
color: #00aaff;
}