From 5bb60e1a35d372529fb200a065a61d5ba98ad925 Mon Sep 17 00:00:00 2001 From: Jason Hilder Date: Fri, 3 Jul 2026 08:13:08 +0200 Subject: [PATCH] Getting old now... --- config/alacritty/alacritty.toml | 2 +- config/awesome/config/theme.lua | 8 ++++++++ config/awesome/rc.lua | 8 -------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/config/alacritty/alacritty.toml b/config/alacritty/alacritty.toml index cc01c91..478a4d1 100644 --- a/config/alacritty/alacritty.toml +++ b/config/alacritty/alacritty.toml @@ -1,7 +1,7 @@ [general] [font] -size = 13 +size = 12 offset = { x = 0, y = 3 } normal = { family = "JetBrainsMono Nerd Font", style = "Regular" } diff --git a/config/awesome/config/theme.lua b/config/awesome/config/theme.lua index 096c705..0e6f07e 100644 --- a/config/awesome/config/theme.lua +++ b/config/awesome/config/theme.lua @@ -2,6 +2,7 @@ local gears = require("gears") local beautiful = require("beautiful") local naughty = require("naughty") local colors = require("config.colors") +local bling = require("bling") beautiful.init(gears.filesystem.get_themes_dir() .. "default/theme.lua") @@ -44,3 +45,10 @@ naughty.config.presets.critical = { bg = colors.background, fg = colors.red, border_color = colors.red, border_width = 3, font = "JetBrainsMono Nerd Font 11", timeout = 0, -- stays until dismissed } + +-- Wallpaper +bling.module.wallpaper.setup { + wallpaper = { "/home/jason/Pictures/Wallpapers/farewell.jpg" }, + position = "fit", + background = "#181818", +} diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index 3933283..c990a62 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -4,7 +4,6 @@ local gears = require("gears") local awful = require("awful") require("awful.autofocus") local naughty = require("naughty") -local bling = require("bling") -- Global config modkey = "Mod1" -- Alt. Use "Mod4" for the Super/Windows key. @@ -44,10 +43,3 @@ root.keys(keys.globalkeys) awful.rules.rules = require("config.rules") require("config.signals") --- Wallpaper -bling.module.wallpaper.setup { - wallpaper = { "/home/jason/Pictures/Wallpapers/farewell.jpg" }, - position = "fit", - background = "#181818", -} -