added kanshi
This commit is contained in:
parent
5f620bceb5
commit
d7a9fd25bd
12 changed files with 69 additions and 32 deletions
|
|
@ -14,4 +14,4 @@ gtk-xft-antialias=1
|
|||
gtk-xft-hinting=1
|
||||
gtk-xft-hintstyle=hintslight
|
||||
gtk-xft-rgba=rgb
|
||||
gtk-application-prefer-dark-theme=0
|
||||
gtk-application-prefer-dark-theme=1
|
||||
|
|
|
|||
|
|
@ -4,4 +4,4 @@ gtk-icon-theme-name=AdwaitaLegacy
|
|||
gtk-font-name=Inter Variable 11
|
||||
gtk-cursor-theme-name=Adwaita
|
||||
gtk-cursor-theme-size=24
|
||||
gtk-application-prefer-dark-theme=0
|
||||
gtk-application-prefer-dark-theme=1
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
exec_always kanshi
|
||||
exec_always autotiling
|
||||
exec_always ~/.config/sway/wob.sh
|
||||
exec swayidle -w \
|
||||
|
|
|
|||
|
|
@ -1,20 +1,4 @@
|
|||
# Wallpaper - solid color
|
||||
output * bg #141514 solid_color
|
||||
|
||||
# Monitors:
|
||||
output HDMI-A-1 res 1920x1080@239.76Hz pos 0,0 transform 0
|
||||
output DP-1 res 2560x1440@59.95Hz pos 1920,0 transform 270
|
||||
output eDP-1 disable
|
||||
output eDP-2 disable
|
||||
|
||||
# Workspace assignments:
|
||||
# 1-2 → HDMI-A-1 (primary)
|
||||
# 3-5 → DP-1 (secondary)
|
||||
# 6-12 → follows focused output
|
||||
workspace 1 output HDMI-A-1
|
||||
workspace 2 output HDMI-A-1
|
||||
workspace 3 output DP-1
|
||||
workspace 4 output DP-1
|
||||
workspace 5 output DP-1
|
||||
|
||||
workspace 1
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
#!/bin/bash
|
||||
while true; do
|
||||
games=$(df /mnt/games --output=pcent 2>/dev/null | tail -1 | tr -d ' ')
|
||||
root=$(df / --output=pcent 2>/dev/null | tail -1 | tr -d ' ')
|
||||
datetime=$(date +'%m/%d/%Y %I:%M %p')
|
||||
echo "$games $root $datetime"
|
||||
echo "$root $datetime"
|
||||
sleep 30
|
||||
done
|
||||
|
|
|
|||
|
|
@ -1,7 +1,5 @@
|
|||
# A TOML linter such as https://taplo.tamasfe.dev/ can use this schema to validate your config.
|
||||
# If you encounter any issues, please make an issue at https://github.com/yazi-rs/schemas.
|
||||
"$schema" = "https://yazi-rs.github.io/schemas/yazi.json"
|
||||
|
||||
[mgr]
|
||||
ratio = [ 1, 4, 3 ]
|
||||
sort_by = "alphabetical"
|
||||
|
|
@ -110,9 +108,9 @@ suppress_preload = false
|
|||
[plugin]
|
||||
fetchers = [
|
||||
# Mimetype
|
||||
{ id = "mime", url = "*/", run = "mime.dir", prio = "high" },
|
||||
{ id = "mime", url = "local://*", run = "mime.local", prio = "high" },
|
||||
{ id = "mime", url = "remote://*", run = "mime.remote", prio = "high" },
|
||||
{ id = "mime", url = "*/", run = "mime.dir", prio = "high", group = "default" },
|
||||
{ id = "mime", url = "local://*", run = "mime.local", prio = "high", group = "default" },
|
||||
{ id = "mime", url = "remote://*", run = "mime.remote", prio = "high", group = "default" },
|
||||
]
|
||||
spotters = [
|
||||
{ url = "*/", run = "folder" },
|
||||
|
|
|
|||
|
|
@ -1,12 +1,36 @@
|
|||
// Zed settings
|
||||
{
|
||||
"edit_predictions": {
|
||||
"allow_data_collection": "no"
|
||||
},
|
||||
"proxy": "",
|
||||
"session": {
|
||||
"trust_all_worktrees": true
|
||||
},
|
||||
"project_panel": {
|
||||
"dock": "left"
|
||||
},
|
||||
"outline_panel": {
|
||||
"dock": "left"
|
||||
},
|
||||
"collaboration_panel": {
|
||||
"dock": "left"
|
||||
},
|
||||
"agent": {
|
||||
"dock": "right",
|
||||
"favorite_models": [],
|
||||
"model_parameters": []
|
||||
},
|
||||
"git_panel": {
|
||||
"dock": "left"
|
||||
},
|
||||
"title_bar": {
|
||||
"show_sign_in": false
|
||||
},
|
||||
"ui_font_family": "Inter Variable",
|
||||
"buffer_font_family": "Iosevka Term",
|
||||
"vim_mode": false,
|
||||
"disable_ai": true,
|
||||
"disable_ai": false,
|
||||
"telemetry": {
|
||||
"diagnostics": false,
|
||||
"metrics": false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue