latest user files

This commit is contained in:
2024-10-10 08:27:07 +02:00
parent 9a37e67d11
commit 43621c8201
47 changed files with 2767 additions and 93 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"window.menuBarVisibility": "toggle",
"workbench.iconTheme": "catppuccin-mocha",
"workbench.colorTheme": "Catppuccin Mocha",
"workbench.startupEditor": "none",
"php.validate.run": "onSave",
"php.validate.executablePath": "/usr/bin/php",
"[vue]": {
"editor.defaultFormatter": "Vue.volar"
},
"editor.fontFamily": "'JetBrainsMono Nerd Font', 'monospace', monospace",
"editor.tabSize": 2,
"diffEditor.ignoreTrimWhitespace": false,
"security.workspace.trust.untrustedFiles": "open",
"editor.fontLigatures": true,
"editor.fontSize": 12,
"workbench.externalBrowser": "firefox",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.minimap.enabled": false
}
+8 -8
View File
@@ -35,7 +35,7 @@
origin = top-right
# Offset from the origin
offset = 10x10
offset = 15x15
# Scale factor. It is auto-detected if value is 0.
scale = 0
@@ -62,7 +62,7 @@
# Set the maximum width for the progress bar
progress_bar_max_width = 300
highlight = "#313244"
highlight = "#b4befe"
# Show how many messages are currently hidden (because of
# notification_limit).
@@ -93,7 +93,7 @@
frame_width = 2
# Defines color of the frame around the notification window.
frame_color = "#313244"
frame_color = "#b4befe"
# Size of gap to display between notifications - requires a compositor.
# If value is greater than 0, separator_height will be ignored and a border
@@ -261,7 +261,7 @@
# Uncomment this if you want to let notications appear under fullscreen
# applications (default: overlay)
layer = top
layer = overlay
# Set this to true to use X11 output on Wayland.
force_xwayland = false
@@ -311,15 +311,15 @@
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
background = "#11111b"
foreground = "#CDD6F4"
background = "#1e1e2e"
foreground = "#eff1f5"
timeout = 10
# Icon for notifications with low urgency, uncomment to enable
#default_icon = /path/to/icon
[urgency_normal]
background = "#11111b"
foreground = "#CDD6F4"
background = "#1e1e2e"
foreground = "#eff1f5"
timeout = 10
# Icon for notifications with normal urgency, uncomment to enable
#default_icon = /path/to/icon
+1 -2
View File
@@ -18,7 +18,6 @@ bind = $mainMod, N, exec, pkill rofi || ~/.config/rofi/nm-vpn/nm-vpn.sh
bind = $mainMod, R, exec, pkill rofi || ~/.config/rofi/launcher/launcher.sh run
bind = $mainMod, P, pseudo, # dwindle
bind = $mainMod, Q, killactive,
bind = $mainMod, S, togglesplit, # dwindle
bind = $mainMod, T, exec, pkill rofi || rofi -show fb -modes "fb:~/.config/rofi/settings-menu/setmen.sh" -theme $HOME/.config/rofi/settings-menu/settings-menu.rasi
bind = $mainMod, U, exec, $HOME/.config/conky/conkytoggler
bind = $mainMod, V, togglefloating,
@@ -83,7 +82,7 @@ bind=,PRINT,exec, hyprm-screenshot
bind = CTRL ALT, DELETE, exec, alacritty -t "BTOP" -e btop -p 1
#bind = CTRL ALT, DELETE, exec, env GTK_THEME=Adwaita:dark resources
#bind = $mainMod, F4, exec, ~/.config/rofi/powermenu/powermenu.sh
bind = $mainMod, O, exec, ~/.config/rofi/powermenu/powermenu.sh
+20 -19
View File
@@ -2,7 +2,8 @@
general {
ignore_empty_input = true
hide_cursor = true
grace = 5
grace = 1
font_family = JetBrainsMono Nerd Font
}
background {
@@ -13,23 +14,21 @@ background {
# all these options are taken from hyprland, see https://wiki.hyprland.org/Configuring/Variables/#blur for explanations
blur_passes = 1 # 0 disables blurring
blur_size = 4
size = 4
passes = 2
ignore_opacity = true
new_optimizations = true
xray = false
noise = 0.0117
contrast = 0.8916
brightness = 0.8172
#vibrancy = 0.1696
# vibrancy_darkness = 0
special = false
size = 4
passes = 2
ignore_opacity = true
new_optimizations = true
xray = false
noise = 0.0117
contrast = 0.8916
brightness = 0.4172
# vibrancy = 0.1696
# vibrancy_darkness = 0
}
image {
monitor =
path = ~/.face
path = $HOME/.face
size = 100 # lesser side if not 1:1 ratio
rounding = -1 # negative values mean circle
border_size = 2
@@ -45,8 +44,8 @@ image {
label {
monitor =
text = $TIME
color = rgba(200, 200, 200, 1.0)
text = cmd[update:1000] echo $TIME
color = rgba(180, 190, 254, 1.0)
font_size = 25
font_family = JetBrainsMono Nerd Font
@@ -54,7 +53,7 @@ label {
halign = center
valign = center
shadow_passes = 1
shadow_passes = 0
shadow_size = 3
shadow_color = rgb(0,0,0)
shadow_boost = 1.2
@@ -63,9 +62,9 @@ label {
input-field {
monitor =
size = 200, 50
outline_thickness = 3
outline_thickness = 2
dots_size = 0.24 # Scale of input-field height, 0.2 - 0.8
dots_spacing = 0.12 # Scale of dots' absolute size, 0.0 - 1.0
dots_spacing = 0.5 # Scale of dots' absolute size, 0.0 - 1.0
dots_center = true
outer_color = rgb(313244)
inner_color = rgb(30, 30, 46)
@@ -77,4 +76,6 @@ input-field {
position = 0, 0
halign = center
valign = center
rounding = 0.1
}
+1
View File
@@ -35,4 +35,5 @@ esac
## Run
rofi \
-show $showmode \
-click-to-exit \
-theme ~/.config/rofi/launcher/launcher.rasi
+24 -41
View File
@@ -2,67 +2,49 @@ configuration {
show-icons: false;
}
@import "../colors.rasi"
@import "../config.rasi"
window {
transparency: "real";
location: center;
anchor: center;
fullscreen: false;
x-offset: 0px;
y-offset: 60px;
width: 635px;
border: 2px solid;
border-radius: 10px;
border-color: var(borders);
cursor: "default";
background-color: var(theme-bg-color);
fullscreen: true;
border: none;
border-radius: 0;
}
mainbox {
enabled: true;
spacing: 15px;
margin: 0px;
padding: 30px;
border: 0px solid;
border-radius: 0px;
border-color: var(borders);
padding: 200px;
background-color: transparent;
children: ["inputbar", "listview" ];
expand: true;
}
inputbar {
enabled: true;
spacing: 15px;
spacing: 10px;
margin: 0px;
padding: 0px;
background-color: transparent;
text-color: var(theme-text-color);
padding: 12px 19px 12px 16px;
border-radius: 10px;
text-color: var(theme-selected-bg-color);
children: ["textbox-prompt-colon", "prompt"];
background-color: var(theme-selected-fg-color);
expand: false;
}
textbox-prompt-colon {
enabled: true;
expand: false;
font: "MonarchOS 10";
str: "";
padding: 12px 16px;
border-radius: 100%;
background-color: var(theme-selected-bg-color);
text-color: @theme-selected-fg-color;
str: "󰣇";
margin: 0;
padding: 0 4px 0 0;
font: "JetBrainsMono Nerd Font 16";
}
prompt {
enabled: true;
padding: 12px;
border-radius: 100%;
background-color: var(theme-text-color);
text-color: var(theme-bg-color);
padding: 4px 0 0 0;
}
dummy {
@@ -72,12 +54,12 @@ dummy {
listview {
enabled: true;
layout: horizontal;
columns: 2;
lines: 5;
cycle: true;
dynamic: false;
scrollbar: false;
layout: horizontal;
reverse: false;
fixed-height: true;
fixed-columns: true;
@@ -87,6 +69,8 @@ listview {
background-color: transparent;
text-color: var(theme-text-color);
cursor: "default";
padding: 0;
margin:0 ;
}
element {
@@ -95,7 +79,7 @@ element {
margin: 0px;
border: 0px solid;
border-radius: 100%;
border-radius: 10px;
background-color: transparent;
@@ -106,10 +90,9 @@ element-text {
background-color: transparent;
text-color: var(text);
cursor: inherit;
vertical-align: 0.5;
horizontal-align: 0.5;
padding: 10px 40px;
horizontal-align: 0;
vertical-align: 0;
horizontal-align: 1;
padding: 0 10px;
}
element selected.normal {
background-color: var(theme-selected-bg-color);
+2 -1
View File
@@ -8,7 +8,7 @@
# CMDs
uptime="`uptime -p | sed -e 's/up //g'`"
host=`hostname`
host="$USER@"`hostname`
# Options
shutdown='󰤆'
@@ -31,6 +31,7 @@ rofi_cmd() {
confirm_cmd() {
rofi -dmenu \
-p 'Confirmation' \
-normal-window \
-mesg 'Confirm '${chosen} \
-theme ~/.config/rofi/powermenu/confirm.rasi
}
+9 -8
View File
@@ -146,14 +146,15 @@
},
"custom/power": {
"format": "󰣇",
// "on-click": "wlogout -P 1 -s -r 10 -c 10"
"menu": "on-click",
"menu-file": "~/.config/waybar/power_menu.xml",
"menu-file": "~/.config/waybar/session_menu.xml",
"menu-actions": {
"shutdown": "shutdown",
"reboot": "reboot",
"lock": "hyprlock",
"logout": "hyprctl dispatch exit",
"hibernate": "systemctl hibernate",
"reboot": "systemctl reboot",
"suspend": "systemctl suspend",
"hibernate": "systemctl hibernate"
"shutdown": "systemctl poweroff"
}
},
"gamemode": {
@@ -372,10 +373,10 @@
"format": "{icon}",
"format-icons": {
"activated": "󱎴",
"deactivated": "󱩛"
"deactivated": "󰷛"
},
"tooltip-format-activated": "󱎴 Active: No Lockscreen on idle",
"tooltip-format-deactivated": "󱩛 Active: Lockscreen on idle"
"tooltip-format-activated": "󱎴 No Lockscreen on idle",
"tooltip-format-deactivated": "󰷛 Lockscreen on idle"
},
"custom/vpn": {
"format": "󰖂",
+36
View File
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<object class="GtkMenu" id="menu">
<child>
<object class="GtkMenuItem" id="lock">
<property name="label"> Lock</property>
</object>
</child>
<child>
<object class="GtkMenuItem" id="logout">
<property name="label">󰗽 Logout</property>
</object>
</child>
<child>
<object class="GtkMenuItem" id="hibernate">
<property name="label">󰤄 Hibernate</property>
</object>
</child>
<child>
<object class="GtkMenuItem" id="reboot">
<property name="label">󰑐 Reboot</property>
</object>
</child>
<child>
<object class="GtkSeparatorMenuItem" id="delimiter1"/>
</child>
<child>
<object class="GtkMenuItem" id="shutdown">
<property name="label"> Shutdown</property>
</object>
</child>
</object>
</interface>
+7 -6
View File
@@ -2,22 +2,23 @@
background-image: none;
}
window {
background-color: rgba(12, 12, 12, 0.9);
background-color: rgba(30, 30, 46, 0.9);
}
button {
color: #acb0d0;
background-color: #1E1E1E;
color: #acb0d0;
background-color: rgba(24, 24, 37, 1);
border-radius: 10px;
border:none;
border: 0;
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
background-size: 20%;
outline-style: none;
}
button:focus, button:active, button:hover {
background-color: #2e3440;
background-color: rgba(17, 17, 27, 1);
outline-style: none;
border: none;
}
#lock {
+21
View File
@@ -0,0 +1,21 @@
// Zed keymap
//
// For information on binding keys, see the Zed
// documentation: https://zed.dev/docs/key-bindings
//
// To see the default key bindings run `zed: open default keymap`
// from the command palette.
[
{
"context": "Workspace",
"bindings": {
// "shift shift": "file_finder::Toggle"
}
},
{
"context": "Editor",
"bindings": {
// "j k": ["workspace::SendKeystrokes", "escape"]
}
}
]
+54
View File
@@ -0,0 +1,54 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"cursor_shape": "block",
"ui_font_size": 14,
"ui_font_family": "JetBrainsMono Nerd Font",
"ui_font_features": {
"calt": true
},
"buffer_font_family": "JetBrainsMono Nerd Font",
"buffer_font_size": 12,
"theme": {
"mode": "system",
"light": "Catppuccin Mocha",
"dark": "Catppuccin Mocha"
},
"telemetry": {
"diagnostics": false,
"metrics": false
},
"terminal": {
"shell": {
"program": "zsh"
},
"env": {
"LANG": "de_DE.UTF-8",
"LC_ALL": "de_DE.UTF-8"
}
},
"show_inline_completions": false,
"features": {
"inline_completion_provider": "none"
},
"toolbar": {
"quick_actions": false
},
"assistant": {
"enabled": false,
"button": false,
"version": "2"
},
"chat_panel": {
"button": false
},
"collaboration_panel": {
"button": false
}
}