Fixed a few things

This commit is contained in:
2025-11-06 01:06:46 +01:00
parent e116e0249d
commit 89a5ae1304
8 changed files with 16 additions and 11 deletions

View File

@@ -34,7 +34,7 @@ rules.append_rules({
},
properties = { floating = true }
}, {
rule_any = { class = { 'firefox', 'factorio', 'Blender', 'Godot' } },
rule_any = { class = { 'firefox', 'factorio', 'Blender', 'Godot', 'kdiff3' } },
properties = { opacity = 1, maximized = false, floating = false },
}, {
rule_any = { class = { 'mpv', 'jellyfinmediaplayer' } },
@@ -45,7 +45,7 @@ rules.append_rules({
floating = true,
border_width = 0,
x = 0,
y = 1080,
y = 1120,
no_border = true,
}
},

View File

@@ -104,7 +104,7 @@ local globalkeys = gears.table.join(
awful.key({ modkey }, 'space', function() awful.layout.inc(1) end, { description = 'select next', group = 'layout' }),
awful.key({ modkey, 'Shift' }, 'space', function() awful.layout.inc(-1) end, { description = 'select previous', group = 'layout' }),
awful.key({ modkey }, '.', function () machi.default_editor.start_interactive() end, { description = 'start machi editor', group = 'layout' }),
awful.key({ modkey }, '+', function () machi.default_editor.start_interactive() end, { description = 'switch between windows for a machi', group = 'layout' }),
awful.key({ modkey }, '+', function () machi.switcher.start(client.focus).ui() end, { description = 'switch between windows for a machi', group = 'layout' }),
---- AUDIO KEYS ----
awful.key({}, "XF86AudioMute", volume.toggle_mute),

View File

@@ -31,8 +31,8 @@ return {
confdir = confdir,
wallpaper = confdir .. '/wallpapers/' .. (settings.wallpaper or 'wall.png'),
vallpaper = confdir .. '/wallpapers/' .. (settings.vallpaper or 'vall0.png'),
font = 'Terminus 8',
font_mono = 'Mononoki Nerd Font Mono 10',
font = 'IosevkaM Extended Medium 8',
font_mono = 'IosevkaM Extended Light 10',
bg_normal = '#000000',
bg_focus = '#000000',
bg_urgent = '#000000',

View File

@@ -1,6 +1,10 @@
local gears = require('gears')
local theme = require('src.theme')
-- idk what the fuck
require('src.widgets.8_mpris')
-- required, because otherwise the require call on line 16 gets turned to a string
return gears.table.join(
require('src.widgets.1_clock'),
require('src.widgets.2_fs'),