1 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
2 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2299
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2214
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: """
I would need to go back to my old dwm config file but I think what you’re looking for is [this patch](https://dwm.suckless.org/patches/windowfollow/). In bspwm this is achieved with the “follow” option as shown in my example.\n
\n
To restart dwm without login out and back in you’ll need this in your .xinitrc:\n
\n
```\n
\n
<span style="color:#323232;">while :; do\n
</span><span style="color:#323232;"> ssh-agent dwm\n
</span><span style="color:#323232;">done\n
</span>\n
```\n
\n
Then whenever you kill dwm with `kill -HUP $(pidof -s dwm)` it will actually be reloaded. Seems like there’s also 2 patches to do that now (note that they both mention the above method as well). \n
[dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/) \n
[dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705413964 {#2221
date: 2024-01-16 15:06:04.0 +01:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2316 …}
+nested: Doctrine\ORM\PersistentCollection {#2318 …}
+votes: Doctrine\ORM\PersistentCollection {#2319 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2308 …}
+notifications: Doctrine\ORM\PersistentCollection {#2307 …}
-id: 313637
-bodyTs: "'/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':103 '/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':106 '/patches/windowfollow/).':26 '2':85 'achiev':31 'actual':77 'agent':61 'also':84 'back':6,48 'bspwm':28 'config':11 'done':63 'dwm':10,43,62,68,74 'dwm.suckless.org':25,102,105 'dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':101 'dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':104 'dwm.suckless.org/patches/windowfollow/).':24 'exampl':40 'file':12 'follow':34 'go':5 'hup':71 'kill':67,70 'like':81 'll':51 'login':45 'look':19 'mention':95 'method':98 'need':3,52 'note':91 'old':9 'option':35 'patch':23,86 'pidof':72 're':18 'reload':79 'restart':42 'seem':80 'shown':37 'ssh':60 'ssh-agent':59 'think':15 'well':100 'whenev':65 'without':44 'would':2 'xinitrc':56"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7437124"
+editedAt: null
+createdAt: DateTimeImmutable @1705413964 {#2193
date: 2024-01-16 15:06:04.0 +01:00
}
+__isInitialized__: true
…2
}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216 …2}
+body: "@dream_weasel Did that help?"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1705851345 {#2069
date: 2024-01-21 16:35:45.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
"@dream_weasel"
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
"@dream_weasel"
]
+children: Doctrine\ORM\PersistentCollection {#2223 …}
+nested: Doctrine\ORM\PersistentCollection {#2224 …}
+votes: Doctrine\ORM\PersistentCollection {#2139 …}
+reports: Doctrine\ORM\PersistentCollection {#2126 …}
+favourites: Doctrine\ORM\PersistentCollection {#2100 …}
+notifications: Doctrine\ORM\PersistentCollection {#2231 …}
-id: 328423
-bodyTs: "'dream':1 'help':5 'weasel':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7591978"
+editedAt: DateTimeImmutable @1727360452 {#2106
date: 2024-09-26 16:20:52.0 +02:00
}
+createdAt: DateTimeImmutable @1705851345 {#2320
date: 2024-01-21 16:35:45.0 +01:00
}
} |
|
Show voter details
|
3 |
DENIED
|
edit
|
App\Entity\EntryComment {#2299
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2214
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: """
I would need to go back to my old dwm config file but I think what you’re looking for is [this patch](https://dwm.suckless.org/patches/windowfollow/). In bspwm this is achieved with the “follow” option as shown in my example.\n
\n
To restart dwm without login out and back in you’ll need this in your .xinitrc:\n
\n
```\n
\n
<span style="color:#323232;">while :; do\n
</span><span style="color:#323232;"> ssh-agent dwm\n
</span><span style="color:#323232;">done\n
</span>\n
```\n
\n
Then whenever you kill dwm with `kill -HUP $(pidof -s dwm)` it will actually be reloaded. Seems like there’s also 2 patches to do that now (note that they both mention the above method as well). \n
[dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/) \n
[dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705413964 {#2221
date: 2024-01-16 15:06:04.0 +01:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2316 …}
+nested: Doctrine\ORM\PersistentCollection {#2318 …}
+votes: Doctrine\ORM\PersistentCollection {#2319 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2308 …}
+notifications: Doctrine\ORM\PersistentCollection {#2307 …}
-id: 313637
-bodyTs: "'/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':103 '/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':106 '/patches/windowfollow/).':26 '2':85 'achiev':31 'actual':77 'agent':61 'also':84 'back':6,48 'bspwm':28 'config':11 'done':63 'dwm':10,43,62,68,74 'dwm.suckless.org':25,102,105 'dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':101 'dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':104 'dwm.suckless.org/patches/windowfollow/).':24 'exampl':40 'file':12 'follow':34 'go':5 'hup':71 'kill':67,70 'like':81 'll':51 'login':45 'look':19 'mention':95 'method':98 'need':3,52 'note':91 'old':9 'option':35 'patch':23,86 'pidof':72 're':18 'reload':79 'restart':42 'seem':80 'shown':37 'ssh':60 'ssh-agent':59 'think':15 'well':100 'whenev':65 'without':44 'would':2 'xinitrc':56"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7437124"
+editedAt: null
+createdAt: DateTimeImmutable @1705413964 {#2193
date: 2024-01-16 15:06:04.0 +01:00
}
+__isInitialized__: true
…2
}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216 …2}
+body: "@dream_weasel Did that help?"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1705851345 {#2069
date: 2024-01-21 16:35:45.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
"@dream_weasel"
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
"@dream_weasel"
]
+children: Doctrine\ORM\PersistentCollection {#2223 …}
+nested: Doctrine\ORM\PersistentCollection {#2224 …}
+votes: Doctrine\ORM\PersistentCollection {#2139 …}
+reports: Doctrine\ORM\PersistentCollection {#2126 …}
+favourites: Doctrine\ORM\PersistentCollection {#2100 …}
+notifications: Doctrine\ORM\PersistentCollection {#2231 …}
-id: 328423
-bodyTs: "'dream':1 'help':5 'weasel':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7591978"
+editedAt: DateTimeImmutable @1727360452 {#2106
date: 2024-09-26 16:20:52.0 +02:00
}
+createdAt: DateTimeImmutable @1705851345 {#2320
date: 2024-01-21 16:35:45.0 +01:00
}
} |
|
Show voter details
|
4 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2299
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2214
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: """
I would need to go back to my old dwm config file but I think what you’re looking for is [this patch](https://dwm.suckless.org/patches/windowfollow/). In bspwm this is achieved with the “follow” option as shown in my example.\n
\n
To restart dwm without login out and back in you’ll need this in your .xinitrc:\n
\n
```\n
\n
<span style="color:#323232;">while :; do\n
</span><span style="color:#323232;"> ssh-agent dwm\n
</span><span style="color:#323232;">done\n
</span>\n
```\n
\n
Then whenever you kill dwm with `kill -HUP $(pidof -s dwm)` it will actually be reloaded. Seems like there’s also 2 patches to do that now (note that they both mention the above method as well). \n
[dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/) \n
[dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705413964 {#2221
date: 2024-01-16 15:06:04.0 +01:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2316 …}
+nested: Doctrine\ORM\PersistentCollection {#2318 …}
+votes: Doctrine\ORM\PersistentCollection {#2319 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2308 …}
+notifications: Doctrine\ORM\PersistentCollection {#2307 …}
-id: 313637
-bodyTs: "'/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':103 '/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':106 '/patches/windowfollow/).':26 '2':85 'achiev':31 'actual':77 'agent':61 'also':84 'back':6,48 'bspwm':28 'config':11 'done':63 'dwm':10,43,62,68,74 'dwm.suckless.org':25,102,105 'dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':101 'dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':104 'dwm.suckless.org/patches/windowfollow/).':24 'exampl':40 'file':12 'follow':34 'go':5 'hup':71 'kill':67,70 'like':81 'll':51 'login':45 'look':19 'mention':95 'method':98 'need':3,52 'note':91 'old':9 'option':35 'patch':23,86 'pidof':72 're':18 'reload':79 'restart':42 'seem':80 'shown':37 'ssh':60 'ssh-agent':59 'think':15 'well':100 'whenev':65 'without':44 'would':2 'xinitrc':56"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7437124"
+editedAt: null
+createdAt: DateTimeImmutable @1705413964 {#2193
date: 2024-01-16 15:06:04.0 +01:00
}
+__isInitialized__: true
…2
}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216 …2}
+body: "@dream_weasel Did that help?"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1705851345 {#2069
date: 2024-01-21 16:35:45.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
"@dream_weasel"
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
"@dream_weasel"
]
+children: Doctrine\ORM\PersistentCollection {#2223 …}
+nested: Doctrine\ORM\PersistentCollection {#2224 …}
+votes: Doctrine\ORM\PersistentCollection {#2139 …}
+reports: Doctrine\ORM\PersistentCollection {#2126 …}
+favourites: Doctrine\ORM\PersistentCollection {#2100 …}
+notifications: Doctrine\ORM\PersistentCollection {#2231 …}
-id: 328423
-bodyTs: "'dream':1 'help':5 'weasel':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7591978"
+editedAt: DateTimeImmutable @1727360452 {#2106
date: 2024-09-26 16:20:52.0 +02:00
}
+createdAt: DateTimeImmutable @1705851345 {#2320
date: 2024-01-21 16:35:45.0 +01:00
}
} |
|
Show voter details
|
5 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
6 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2057
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2054 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
Thanks for sharing. Can’t wait to read some great new stuff!\n
\n
My little one where I promote some apps I think deserve more love, talk about neovim and zsh cool tweaks, and share my experience with some bigger projects (like building your own split keyboard, testing a new distro…).\n
\n
<https://www-gem.codeberg.page>\n
\n
I also follow <https://lazybear.io/index.xml>
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705689586 {#2298
date: 2024-01-19 19:39:46.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@macattack@lemmy.world"
"@macattack@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2052 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2048 …}
+reports: Doctrine\ORM\PersistentCollection {#2070 …}
+favourites: Doctrine\ORM\PersistentCollection {#2071 …}
+notifications: Doctrine\ORM\PersistentCollection {#2207 …}
-id: 323520
-bodyTs: "'/index.xml':57 'also':53 'app':20 'bigger':39 'build':42 'cool':31 'deserv':23 'distro':50 'experi':36 'follow':54 'great':10 'keyboard':46 'lazybear.io':56 'lazybear.io/index.xml':55 'like':41 'littl':14 'love':25 'neovim':28 'new':11,49 'one':15 'project':40 'promot':18 'read':8 'share':3,34 'split':45 'stuff':12 'talk':26 'test':47 'thank':1 'think':22 'tweak':32 'wait':6 'www-gem.codeberg.page':51 'zsh':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7529568"
+editedAt: DateTimeImmutable @1726830193 {#2293
date: 2024-09-20 13:03:13.0 +02:00
}
+createdAt: DateTimeImmutable @1705689586 {#2066
date: 2024-01-19 19:39:46.0 +01:00
}
} |
|
Show voter details
|
7 |
DENIED
|
edit
|
App\Entity\EntryComment {#2057
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2054 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
Thanks for sharing. Can’t wait to read some great new stuff!\n
\n
My little one where I promote some apps I think deserve more love, talk about neovim and zsh cool tweaks, and share my experience with some bigger projects (like building your own split keyboard, testing a new distro…).\n
\n
<https://www-gem.codeberg.page>\n
\n
I also follow <https://lazybear.io/index.xml>
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705689586 {#2298
date: 2024-01-19 19:39:46.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@macattack@lemmy.world"
"@macattack@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2052 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2048 …}
+reports: Doctrine\ORM\PersistentCollection {#2070 …}
+favourites: Doctrine\ORM\PersistentCollection {#2071 …}
+notifications: Doctrine\ORM\PersistentCollection {#2207 …}
-id: 323520
-bodyTs: "'/index.xml':57 'also':53 'app':20 'bigger':39 'build':42 'cool':31 'deserv':23 'distro':50 'experi':36 'follow':54 'great':10 'keyboard':46 'lazybear.io':56 'lazybear.io/index.xml':55 'like':41 'littl':14 'love':25 'neovim':28 'new':11,49 'one':15 'project':40 'promot':18 'read':8 'share':3,34 'split':45 'stuff':12 'talk':26 'test':47 'thank':1 'think':22 'tweak':32 'wait':6 'www-gem.codeberg.page':51 'zsh':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7529568"
+editedAt: DateTimeImmutable @1726830193 {#2293
date: 2024-09-20 13:03:13.0 +02:00
}
+createdAt: DateTimeImmutable @1705689586 {#2066
date: 2024-01-19 19:39:46.0 +01:00
}
} |
|
Show voter details
|
8 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2057
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2054 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
Thanks for sharing. Can’t wait to read some great new stuff!\n
\n
My little one where I promote some apps I think deserve more love, talk about neovim and zsh cool tweaks, and share my experience with some bigger projects (like building your own split keyboard, testing a new distro…).\n
\n
<https://www-gem.codeberg.page>\n
\n
I also follow <https://lazybear.io/index.xml>
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705689586 {#2298
date: 2024-01-19 19:39:46.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@macattack@lemmy.world"
"@macattack@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2052 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2048 …}
+reports: Doctrine\ORM\PersistentCollection {#2070 …}
+favourites: Doctrine\ORM\PersistentCollection {#2071 …}
+notifications: Doctrine\ORM\PersistentCollection {#2207 …}
-id: 323520
-bodyTs: "'/index.xml':57 'also':53 'app':20 'bigger':39 'build':42 'cool':31 'deserv':23 'distro':50 'experi':36 'follow':54 'great':10 'keyboard':46 'lazybear.io':56 'lazybear.io/index.xml':55 'like':41 'littl':14 'love':25 'neovim':28 'new':11,49 'one':15 'project':40 'promot':18 'read':8 'share':3,34 'split':45 'stuff':12 'talk':26 'test':47 'thank':1 'think':22 'tweak':32 'wait':6 'www-gem.codeberg.page':51 'zsh':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7529568"
+editedAt: DateTimeImmutable @1726830193 {#2293
date: 2024-09-20 13:03:13.0 +02:00
}
+createdAt: DateTimeImmutable @1705689586 {#2066
date: 2024-01-19 19:39:46.0 +01:00
}
} |
|
Show voter details
|
9 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
10 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2261
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2282 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: "If you’re looking for something minimal but highly customizable I’d recommend newsboat. For Android I use feedr."
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1726840725 {#2047
date: 2024-09-20 15:58:45.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@CatLikeLemming@lemmy.blahaj.zone"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2204 …}
+votes: Doctrine\ORM\PersistentCollection {#2212 …}
+reports: Doctrine\ORM\PersistentCollection {#2292 …}
+favourites: Doctrine\ORM\PersistentCollection {#2195 …}
+notifications: Doctrine\ORM\PersistentCollection {#2205 …}
-id: 323502
-bodyTs: "'android':16 'customiz':10 'd':12 'feedr':19 'high':9 'look':4 'minim':7 'newsboat':14 're':3 'recommend':13 'someth':6 'use':18"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7529381"
+editedAt: null
+createdAt: DateTimeImmutable @1705689084 {#2045
date: 2024-01-19 19:31:24.0 +01:00
}
} |
|
Show voter details
|
11 |
DENIED
|
edit
|
App\Entity\EntryComment {#2261
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2282 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: "If you’re looking for something minimal but highly customizable I’d recommend newsboat. For Android I use feedr."
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1726840725 {#2047
date: 2024-09-20 15:58:45.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@CatLikeLemming@lemmy.blahaj.zone"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2204 …}
+votes: Doctrine\ORM\PersistentCollection {#2212 …}
+reports: Doctrine\ORM\PersistentCollection {#2292 …}
+favourites: Doctrine\ORM\PersistentCollection {#2195 …}
+notifications: Doctrine\ORM\PersistentCollection {#2205 …}
-id: 323502
-bodyTs: "'android':16 'customiz':10 'd':12 'feedr':19 'high':9 'look':4 'minim':7 'newsboat':14 're':3 'recommend':13 'someth':6 'use':18"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7529381"
+editedAt: null
+createdAt: DateTimeImmutable @1705689084 {#2045
date: 2024-01-19 19:31:24.0 +01:00
}
} |
|
Show voter details
|
12 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2261
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2282 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: "If you’re looking for something minimal but highly customizable I’d recommend newsboat. For Android I use feedr."
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1726840725 {#2047
date: 2024-09-20 15:58:45.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@CatLikeLemming@lemmy.blahaj.zone"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2204 …}
+votes: Doctrine\ORM\PersistentCollection {#2212 …}
+reports: Doctrine\ORM\PersistentCollection {#2292 …}
+favourites: Doctrine\ORM\PersistentCollection {#2195 …}
+notifications: Doctrine\ORM\PersistentCollection {#2205 …}
-id: 323502
-bodyTs: "'android':16 'customiz':10 'd':12 'feedr':19 'high':9 'look':4 'minim':7 'newsboat':14 're':3 'recommend':13 'someth':6 'use':18"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7529381"
+editedAt: null
+createdAt: DateTimeImmutable @1705689084 {#2045
date: 2024-01-19 19:31:24.0 +01:00
}
} |
|
Show voter details
|
13 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
14 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2194
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2196 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2199 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2199 …}
+body: """
I’ve been scrolling with no hope to see st anywhere but here it is! Only mentioned twice for now but this little guy deserves so much love. Yes, you have to build it (*i.e.* patch it) but that’s actually it’s beauty. You get the exact terminal you want, nothing more, nothing less. If you’re looking for power and lightweight this is your guy. \n
Coupled with tmux and you’re the God of your system :)
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1705543100 {#2217
date: 2024-01-18 02:58:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@tourist@lemmy.world"
"@wiikifox@pawb.social"
]
+children: Doctrine\ORM\PersistentCollection {#2219 …}
+nested: Doctrine\ORM\PersistentCollection {#2222 …}
+votes: Doctrine\ORM\PersistentCollection {#2218 …}
+reports: Doctrine\ORM\PersistentCollection {#2283 …}
+favourites: Doctrine\ORM\PersistentCollection {#2278 …}
+notifications: Doctrine\ORM\PersistentCollection {#2280 …}
-id: 318143
-bodyTs: "'actual':41 'anywher':11 'beauti':44 'build':33 'coupl':68 'deserv':25 'exact':48 'get':46 'god':75 'guy':24,67 'hope':7 'i.e':35 'less':55 'lightweight':63 'littl':23 'look':59 'love':28 'mention':17 'much':27 'noth':52,54 'patch':36 'power':61 're':58,73 'scroll':4 'see':9 'st':10 'system':78 'termin':49 'tmux':70 'twice':18 've':2 'want':51 'yes':29"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7485591"
+editedAt: null
+createdAt: DateTimeImmutable @1705543100 {#2197
date: 2024-01-18 02:58:20.0 +01:00
}
} |
|
Show voter details
|
15 |
DENIED
|
edit
|
App\Entity\EntryComment {#2194
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2196 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2199 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2199 …}
+body: """
I’ve been scrolling with no hope to see st anywhere but here it is! Only mentioned twice for now but this little guy deserves so much love. Yes, you have to build it (*i.e.* patch it) but that’s actually it’s beauty. You get the exact terminal you want, nothing more, nothing less. If you’re looking for power and lightweight this is your guy. \n
Coupled with tmux and you’re the God of your system :)
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1705543100 {#2217
date: 2024-01-18 02:58:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@tourist@lemmy.world"
"@wiikifox@pawb.social"
]
+children: Doctrine\ORM\PersistentCollection {#2219 …}
+nested: Doctrine\ORM\PersistentCollection {#2222 …}
+votes: Doctrine\ORM\PersistentCollection {#2218 …}
+reports: Doctrine\ORM\PersistentCollection {#2283 …}
+favourites: Doctrine\ORM\PersistentCollection {#2278 …}
+notifications: Doctrine\ORM\PersistentCollection {#2280 …}
-id: 318143
-bodyTs: "'actual':41 'anywher':11 'beauti':44 'build':33 'coupl':68 'deserv':25 'exact':48 'get':46 'god':75 'guy':24,67 'hope':7 'i.e':35 'less':55 'lightweight':63 'littl':23 'look':59 'love':28 'mention':17 'much':27 'noth':52,54 'patch':36 'power':61 're':58,73 'scroll':4 'see':9 'st':10 'system':78 'termin':49 'tmux':70 'twice':18 've':2 'want':51 'yes':29"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7485591"
+editedAt: null
+createdAt: DateTimeImmutable @1705543100 {#2197
date: 2024-01-18 02:58:20.0 +01:00
}
} |
|
Show voter details
|
16 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2194
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2196 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2199 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2199 …}
+body: """
I’ve been scrolling with no hope to see st anywhere but here it is! Only mentioned twice for now but this little guy deserves so much love. Yes, you have to build it (*i.e.* patch it) but that’s actually it’s beauty. You get the exact terminal you want, nothing more, nothing less. If you’re looking for power and lightweight this is your guy. \n
Coupled with tmux and you’re the God of your system :)
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1705543100 {#2217
date: 2024-01-18 02:58:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@tourist@lemmy.world"
"@wiikifox@pawb.social"
]
+children: Doctrine\ORM\PersistentCollection {#2219 …}
+nested: Doctrine\ORM\PersistentCollection {#2222 …}
+votes: Doctrine\ORM\PersistentCollection {#2218 …}
+reports: Doctrine\ORM\PersistentCollection {#2283 …}
+favourites: Doctrine\ORM\PersistentCollection {#2278 …}
+notifications: Doctrine\ORM\PersistentCollection {#2280 …}
-id: 318143
-bodyTs: "'actual':41 'anywher':11 'beauti':44 'build':33 'coupl':68 'deserv':25 'exact':48 'get':46 'god':75 'guy':24,67 'hope':7 'i.e':35 'less':55 'lightweight':63 'littl':23 'look':59 'love':28 'mention':17 'much':27 'noth':52,54 'patch':36 'power':61 're':58,73 'scroll':4 'see':9 'st':10 'system':78 'termin':49 'tmux':70 'twice':18 've':2 'want':51 'yes':29"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7485591"
+editedAt: null
+createdAt: DateTimeImmutable @1705543100 {#2197
date: 2024-01-18 02:58:20.0 +01:00
}
} |
|
Show voter details
|
17 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
18 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\EntryComment {#2214
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: """
I would need to go back to my old dwm config file but I think what you’re looking for is [this patch](https://dwm.suckless.org/patches/windowfollow/). In bspwm this is achieved with the “follow” option as shown in my example.\n
\n
To restart dwm without login out and back in you’ll need this in your .xinitrc:\n
\n
```\n
\n
<span style="color:#323232;">while :; do\n
</span><span style="color:#323232;"> ssh-agent dwm\n
</span><span style="color:#323232;">done\n
</span>\n
```\n
\n
Then whenever you kill dwm with `kill -HUP $(pidof -s dwm)` it will actually be reloaded. Seems like there’s also 2 patches to do that now (note that they both mention the above method as well). \n
[dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/) \n
[dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705413964 {#2221
date: 2024-01-16 15:06:04.0 +01:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2316 …}
+nested: Doctrine\ORM\PersistentCollection {#2318 …}
+votes: Doctrine\ORM\PersistentCollection {#2319 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2308 …}
+notifications: Doctrine\ORM\PersistentCollection {#2307 …}
-id: 313637
-bodyTs: "'/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':103 '/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':106 '/patches/windowfollow/).':26 '2':85 'achiev':31 'actual':77 'agent':61 'also':84 'back':6,48 'bspwm':28 'config':11 'done':63 'dwm':10,43,62,68,74 'dwm.suckless.org':25,102,105 'dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':101 'dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':104 'dwm.suckless.org/patches/windowfollow/).':24 'exampl':40 'file':12 'follow':34 'go':5 'hup':71 'kill':67,70 'like':81 'll':51 'login':45 'look':19 'mention':95 'method':98 'need':3,52 'note':91 'old':9 'option':35 'patch':23,86 'pidof':72 're':18 'reload':79 'restart':42 'seem':80 'shown':37 'ssh':60 'ssh-agent':59 'think':15 'well':100 'whenev':65 'without':44 'would':2 'xinitrc':56"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7437124"
+editedAt: null
+createdAt: DateTimeImmutable @1705413964 {#2193
date: 2024-01-16 15:06:04.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
19 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\EntryComment {#2214
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: """
I would need to go back to my old dwm config file but I think what you’re looking for is [this patch](https://dwm.suckless.org/patches/windowfollow/). In bspwm this is achieved with the “follow” option as shown in my example.\n
\n
To restart dwm without login out and back in you’ll need this in your .xinitrc:\n
\n
```\n
\n
<span style="color:#323232;">while :; do\n
</span><span style="color:#323232;"> ssh-agent dwm\n
</span><span style="color:#323232;">done\n
</span>\n
```\n
\n
Then whenever you kill dwm with `kill -HUP $(pidof -s dwm)` it will actually be reloaded. Seems like there’s also 2 patches to do that now (note that they both mention the above method as well). \n
[dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/) \n
[dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705413964 {#2221
date: 2024-01-16 15:06:04.0 +01:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2316 …}
+nested: Doctrine\ORM\PersistentCollection {#2318 …}
+votes: Doctrine\ORM\PersistentCollection {#2319 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2308 …}
+notifications: Doctrine\ORM\PersistentCollection {#2307 …}
-id: 313637
-bodyTs: "'/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':103 '/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':106 '/patches/windowfollow/).':26 '2':85 'achiev':31 'actual':77 'agent':61 'also':84 'back':6,48 'bspwm':28 'config':11 'done':63 'dwm':10,43,62,68,74 'dwm.suckless.org':25,102,105 'dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':101 'dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':104 'dwm.suckless.org/patches/windowfollow/).':24 'exampl':40 'file':12 'follow':34 'go':5 'hup':71 'kill':67,70 'like':81 'll':51 'login':45 'look':19 'mention':95 'method':98 'need':3,52 'note':91 'old':9 'option':35 'patch':23,86 'pidof':72 're':18 'reload':79 'restart':42 'seem':80 'shown':37 'ssh':60 'ssh-agent':59 'think':15 'well':100 'whenev':65 'without':44 'would':2 'xinitrc':56"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7437124"
+editedAt: null
+createdAt: DateTimeImmutable @1705413964 {#2193
date: 2024-01-16 15:06:04.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
20 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\EntryComment {#2214
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: """
I would need to go back to my old dwm config file but I think what you’re looking for is [this patch](https://dwm.suckless.org/patches/windowfollow/). In bspwm this is achieved with the “follow” option as shown in my example.\n
\n
To restart dwm without login out and back in you’ll need this in your .xinitrc:\n
\n
```\n
\n
<span style="color:#323232;">while :; do\n
</span><span style="color:#323232;"> ssh-agent dwm\n
</span><span style="color:#323232;">done\n
</span>\n
```\n
\n
Then whenever you kill dwm with `kill -HUP $(pidof -s dwm)` it will actually be reloaded. Seems like there’s also 2 patches to do that now (note that they both mention the above method as well). \n
[dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/) \n
[dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705413964 {#2221
date: 2024-01-16 15:06:04.0 +01:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2316 …}
+nested: Doctrine\ORM\PersistentCollection {#2318 …}
+votes: Doctrine\ORM\PersistentCollection {#2319 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2308 …}
+notifications: Doctrine\ORM\PersistentCollection {#2307 …}
-id: 313637
-bodyTs: "'/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':103 '/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':106 '/patches/windowfollow/).':26 '2':85 'achiev':31 'actual':77 'agent':61 'also':84 'back':6,48 'bspwm':28 'config':11 'done':63 'dwm':10,43,62,68,74 'dwm.suckless.org':25,102,105 'dwm.suckless.org/patches/restartsig/](https://dwm.suckless.org/patches/restartsig/)':101 'dwm.suckless.org/patches/selfrestart/](https://dwm.suckless.org/patches/selfrestart/)':104 'dwm.suckless.org/patches/windowfollow/).':24 'exampl':40 'file':12 'follow':34 'go':5 'hup':71 'kill':67,70 'like':81 'll':51 'login':45 'look':19 'mention':95 'method':98 'need':3,52 'note':91 'old':9 'option':35 'patch':23,86 'pidof':72 're':18 'reload':79 'restart':42 'seem':80 'shown':37 'ssh':60 'ssh-agent':59 'think':15 'well':100 'whenev':65 'without':44 'would':2 'xinitrc':56"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7437124"
+editedAt: null
+createdAt: DateTimeImmutable @1705413964 {#2193
date: 2024-01-16 15:06:04.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
21 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
22 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2322
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2315 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: """
You know how hard it is to explain personal preferences when we talk about tiling WM but, as I mentioned in my first post, I would say that bspwm offer some further granularity. I didn’t thought that was possible after using dwm but to come back to my example I have bspwm listening to the state of my media player. Everytime it becomes floating, bspwm resize the window, place it on a specific position, and add a border to it. This is just one example. Also, even though you can use it with any tiling WM, sxhkd has been developed with bspwm in mind and offers the best keybindings management I’ve ever tested. Thanks to chords, several commands can be associated to independent keybindings within the same piece of code like so:\n
\n
```\n
\n
<span style="color:#323232;">control+{_,shift+}{1-9}\n
</span><span style="color:#323232;"> bspc {desktop -f,node -d} '^{1-9}' --follow\n
</span>\n
```\n
\n
Control and a number will switch you to a workspace. If you also press Shift the active window will be sent to a given workspace.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705367116 {#2295
date: 2024-01-16 02:05:16.0 +01:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2266 …}
+nested: Doctrine\ORM\PersistentCollection {#2257 …}
+votes: Doctrine\ORM\PersistentCollection {#2267 …}
+reports: Doctrine\ORM\PersistentCollection {#2271 …}
+favourites: Doctrine\ORM\PersistentCollection {#2272 …}
+notifications: Doctrine\ORM\PersistentCollection {#2253 …}
-id: 312334
-bodyTs: "'-9':138,145 '1':137,144 'activ':163 'add':77 'also':87,159 'associ':123 'back':47 'becom':64 'best':109 'border':79 'bspc':139 'bspwm':29,53,66,103 'chord':118 'code':132 'come':46 'command':120 'control':135,147 'd':143 'desktop':140 'develop':101 'didn':35 'dwm':43 'even':88 'ever':114 'everytim':62 'exampl':50,86 'explain':8 'f':141 'first':23 'float':65 'follow':146 'given':170 'granular':33 'hard':4 'independ':125 'keybind':110,126 'know':2 'like':133 'listen':54 'manag':111 'media':60 'mention':20 'mind':105 'node':142 'number':150 'offer':30,107 'one':85 'person':9 'piec':130 'place':70 'player':61 'posit':75 'possibl':40 'post':24 'prefer':10 'press':160 'resiz':67 'say':27 'sent':167 'sever':119 'shift':136,161 'specif':74 'state':57 'switch':152 'sxhkd':98 'talk':13 'test':115 'thank':116 'though':89 'thought':37 'tile':15,96 'use':42,92 've':113 'window':69,164 'within':127 'wm':16,97 'workspac':156,171 'would':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7415522"
+editedAt: null
+createdAt: DateTimeImmutable @1705367116 {#2281
date: 2024-01-16 02:05:16.0 +01:00
}
} |
|
Show voter details
|
23 |
DENIED
|
edit
|
App\Entity\EntryComment {#2322
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2315 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: """
You know how hard it is to explain personal preferences when we talk about tiling WM but, as I mentioned in my first post, I would say that bspwm offer some further granularity. I didn’t thought that was possible after using dwm but to come back to my example I have bspwm listening to the state of my media player. Everytime it becomes floating, bspwm resize the window, place it on a specific position, and add a border to it. This is just one example. Also, even though you can use it with any tiling WM, sxhkd has been developed with bspwm in mind and offers the best keybindings management I’ve ever tested. Thanks to chords, several commands can be associated to independent keybindings within the same piece of code like so:\n
\n
```\n
\n
<span style="color:#323232;">control+{_,shift+}{1-9}\n
</span><span style="color:#323232;"> bspc {desktop -f,node -d} '^{1-9}' --follow\n
</span>\n
```\n
\n
Control and a number will switch you to a workspace. If you also press Shift the active window will be sent to a given workspace.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705367116 {#2295
date: 2024-01-16 02:05:16.0 +01:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2266 …}
+nested: Doctrine\ORM\PersistentCollection {#2257 …}
+votes: Doctrine\ORM\PersistentCollection {#2267 …}
+reports: Doctrine\ORM\PersistentCollection {#2271 …}
+favourites: Doctrine\ORM\PersistentCollection {#2272 …}
+notifications: Doctrine\ORM\PersistentCollection {#2253 …}
-id: 312334
-bodyTs: "'-9':138,145 '1':137,144 'activ':163 'add':77 'also':87,159 'associ':123 'back':47 'becom':64 'best':109 'border':79 'bspc':139 'bspwm':29,53,66,103 'chord':118 'code':132 'come':46 'command':120 'control':135,147 'd':143 'desktop':140 'develop':101 'didn':35 'dwm':43 'even':88 'ever':114 'everytim':62 'exampl':50,86 'explain':8 'f':141 'first':23 'float':65 'follow':146 'given':170 'granular':33 'hard':4 'independ':125 'keybind':110,126 'know':2 'like':133 'listen':54 'manag':111 'media':60 'mention':20 'mind':105 'node':142 'number':150 'offer':30,107 'one':85 'person':9 'piec':130 'place':70 'player':61 'posit':75 'possibl':40 'post':24 'prefer':10 'press':160 'resiz':67 'say':27 'sent':167 'sever':119 'shift':136,161 'specif':74 'state':57 'switch':152 'sxhkd':98 'talk':13 'test':115 'thank':116 'though':89 'thought':37 'tile':15,96 'use':42,92 've':113 'window':69,164 'within':127 'wm':16,97 'workspac':156,171 'would':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7415522"
+editedAt: null
+createdAt: DateTimeImmutable @1705367116 {#2281
date: 2024-01-16 02:05:16.0 +01:00
}
} |
|
Show voter details
|
24 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2322
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2315 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: """
You know how hard it is to explain personal preferences when we talk about tiling WM but, as I mentioned in my first post, I would say that bspwm offer some further granularity. I didn’t thought that was possible after using dwm but to come back to my example I have bspwm listening to the state of my media player. Everytime it becomes floating, bspwm resize the window, place it on a specific position, and add a border to it. This is just one example. Also, even though you can use it with any tiling WM, sxhkd has been developed with bspwm in mind and offers the best keybindings management I’ve ever tested. Thanks to chords, several commands can be associated to independent keybindings within the same piece of code like so:\n
\n
```\n
\n
<span style="color:#323232;">control+{_,shift+}{1-9}\n
</span><span style="color:#323232;"> bspc {desktop -f,node -d} '^{1-9}' --follow\n
</span>\n
```\n
\n
Control and a number will switch you to a workspace. If you also press Shift the active window will be sent to a given workspace.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705367116 {#2295
date: 2024-01-16 02:05:16.0 +01:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2266 …}
+nested: Doctrine\ORM\PersistentCollection {#2257 …}
+votes: Doctrine\ORM\PersistentCollection {#2267 …}
+reports: Doctrine\ORM\PersistentCollection {#2271 …}
+favourites: Doctrine\ORM\PersistentCollection {#2272 …}
+notifications: Doctrine\ORM\PersistentCollection {#2253 …}
-id: 312334
-bodyTs: "'-9':138,145 '1':137,144 'activ':163 'add':77 'also':87,159 'associ':123 'back':47 'becom':64 'best':109 'border':79 'bspc':139 'bspwm':29,53,66,103 'chord':118 'code':132 'come':46 'command':120 'control':135,147 'd':143 'desktop':140 'develop':101 'didn':35 'dwm':43 'even':88 'ever':114 'everytim':62 'exampl':50,86 'explain':8 'f':141 'first':23 'float':65 'follow':146 'given':170 'granular':33 'hard':4 'independ':125 'keybind':110,126 'know':2 'like':133 'listen':54 'manag':111 'media':60 'mention':20 'mind':105 'node':142 'number':150 'offer':30,107 'one':85 'person':9 'piec':130 'place':70 'player':61 'posit':75 'possibl':40 'post':24 'prefer':10 'press':160 'resiz':67 'say':27 'sent':167 'sever':119 'shift':136,161 'specif':74 'state':57 'switch':152 'sxhkd':98 'talk':13 'test':115 'thank':116 'though':89 'thought':37 'tile':15,96 'use':42,92 've':113 'window':69,164 'within':127 'wm':16,97 'workspac':156,171 'would':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7415522"
+editedAt: null
+createdAt: DateTimeImmutable @1705367116 {#2281
date: 2024-01-16 02:05:16.0 +01:00
}
} |
|
Show voter details
|
25 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
26 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2264
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2235 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: "I used dwm for few years before moving to bspwm."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1705358889 {#2321
date: 2024-01-15 23:48:09.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2242 …}
+nested: Doctrine\ORM\PersistentCollection {#2240 …}
+votes: Doctrine\ORM\PersistentCollection {#2233 …}
+reports: Doctrine\ORM\PersistentCollection {#2234 …}
+favourites: Doctrine\ORM\PersistentCollection {#2237 …}
+notifications: Doctrine\ORM\PersistentCollection {#2258 …}
-id: 312033
-bodyTs: "'bspwm':10 'dwm':3 'move':8 'use':2 'year':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7411143"
+editedAt: null
+createdAt: DateTimeImmutable @1705358889 {#2312
date: 2024-01-15 23:48:09.0 +01:00
}
} |
|
Show voter details
|
27 |
DENIED
|
edit
|
App\Entity\EntryComment {#2264
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2235 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: "I used dwm for few years before moving to bspwm."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1705358889 {#2321
date: 2024-01-15 23:48:09.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2242 …}
+nested: Doctrine\ORM\PersistentCollection {#2240 …}
+votes: Doctrine\ORM\PersistentCollection {#2233 …}
+reports: Doctrine\ORM\PersistentCollection {#2234 …}
+favourites: Doctrine\ORM\PersistentCollection {#2237 …}
+notifications: Doctrine\ORM\PersistentCollection {#2258 …}
-id: 312033
-bodyTs: "'bspwm':10 'dwm':3 'move':8 'use':2 'year':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7411143"
+editedAt: null
+createdAt: DateTimeImmutable @1705358889 {#2312
date: 2024-01-15 23:48:09.0 +01:00
}
} |
|
Show voter details
|
28 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2264
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2235 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
}
+body: "I used dwm for few years before moving to bspwm."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1705358889 {#2321
date: 2024-01-15 23:48:09.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
"@wwwgem@lemmy.ml"
"@dream_weasel@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2242 …}
+nested: Doctrine\ORM\PersistentCollection {#2240 …}
+votes: Doctrine\ORM\PersistentCollection {#2233 …}
+reports: Doctrine\ORM\PersistentCollection {#2234 …}
+favourites: Doctrine\ORM\PersistentCollection {#2237 …}
+notifications: Doctrine\ORM\PersistentCollection {#2258 …}
-id: 312033
-bodyTs: "'bspwm':10 'dwm':3 'move':8 'use':2 'year':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7411143"
+editedAt: null
+createdAt: DateTimeImmutable @1705358889 {#2312
date: 2024-01-15 23:48:09.0 +01:00
}
} |
|
Show voter details
|
29 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
30 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
31 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
32 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\EntryComment {#2216
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2105 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
As always there’s no such thing as a global “best” application. Building your system is a very personal thing. It all depends on your needs and liking.\n
\n
My personal journey in the tiling WM world has started 20 years ago with awesomewm. Then I moved to i3 because it feels lighter to me while offering a configuration approach I preferred. After some times, I felt ready to “really” build my tiling WM and I moved to dwm.\n
\n
I couldn’t be happier until I came across bspwm which is as suckless as dwm but EWMH compliant. I also love the nice approach of keybindings offered by sxhkd. What I appreciate the most is the no limit configuration power since you can integrate the very powerful program that writes messages on bspwm 's socket (bspc) in any scripts you can imagine. This let you create some crazy and very personal rules. For example, I designed one where bspwm is listening to my video player state and if not fullscreen it automatically resizes it to a given size and moves it to a specific position. I have another one that will apply borders only to 2 specific windows applications and use a different color for each one.\n
\n
This is a very brief overview of what I’ve experimented. Your expectations and the time you want to deserve to your configuration may guide you on another path. Archwiki has a [comparison of tiling WM ](https://wiki.archlinux.org/title/Comparison_of_tiling_window_managers)may be a good starting point to help you in your decision.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1727360341 {#2263
date: 2024-09-26 16:19:01.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@flashgnash@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2254 …}
+nested: Doctrine\ORM\PersistentCollection {#2246 …}
+votes: Doctrine\ORM\PersistentCollection {#2248 …}
+reports: Doctrine\ORM\PersistentCollection {#2247 …}
+favourites: Doctrine\ORM\PersistentCollection {#2256 …}
+notifications: Doctrine\ORM\PersistentCollection {#2284 …}
-id: 310678
-bodyTs: "'/title/comparison_of_tiling_window_managers)may':245 '2':195 '20':39 'across':87 'ago':41 'also':99 'alway':2 'anoth':187,234 'appli':191 'applic':12,198 'appreci':111 'approach':59,103 'archwiki':236 'automat':171 'awesomewm':43 'best':11 'border':192 'brief':211 'bspc':135 'bspwm':88,132,158 'build':13,70 'came':86 'color':203 'comparison':239 'compliant':97 'configur':58,118,229 'couldn':80 'crazi':147 'creat':145 'decis':256 'depend':23 'deserv':226 'design':155 'differ':202 'dwm':78,94 'ewmh':96 'exampl':153 'expect':219 'experi':217 'feel':51 'felt':66 'fullscreen':169 'given':176 'global':10 'good':248 'guid':231 'happier':83 'help':252 'i3':48 'imagin':141 'integr':123 'journey':31 'keybind':105 'let':143 'lighter':52 'like':28 'limit':117 'listen':160 'love':100 'may':230 'messag':130 'move':46,76,179 'need':26 'nice':102 'offer':56,106 'one':156,188,206 'overview':212 'path':235 'person':19,30,150 'player':164 'point':250 'posit':184 'power':119,126 'prefer':61 'program':127 'readi':67 'realli':69 'resiz':172 'rule':151 'script':138 'sinc':120 'size':177 'socket':134 'specif':183,196 'start':38,249 'state':165 'suckless':92 'sxhkd':108 'system':15 'thing':7,20 'tile':34,72,241 'time':64,222 'use':200 've':216 'video':163 'want':224 'wiki.archlinux.org':244 'wiki.archlinux.org/title/comparison_of_tiling_window_managers)may':243 'window':197 'wm':35,73,242 'world':36 'write':129 'year':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7396810"
+editedAt: null
+createdAt: DateTimeImmutable @1705326981 {#2262
date: 2024-01-15 14:56:21.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
33 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
34 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2188
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2142 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2142 …}
+body: """
You’re spot on and that’s what this discussion helped me figure out: I have no problem. I knew that but I also thought that NixOS would bring something new to improve my Linux usage. So far I still see such improvements for servers or deployment on several machines but not for a single user with standard needs (and this statement may be wrong and due to my limited experience with NixOS).\n
\n
But NixOS approach is quite different from others and I feel like I may discover something of interest to me once I learn more about it. Also, just for the sake of learning and discovering, I will continue experimenting with it for a while.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705257345 {#2244
date: 2024-01-14 19:35:45.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@java@beehaw.org"
]
+children: Doctrine\ORM\PersistentCollection {#2034 …}
+nested: Doctrine\ORM\PersistentCollection {#2156 …}
+votes: Doctrine\ORM\PersistentCollection {#2154 …}
+reports: Doctrine\ORM\PersistentCollection {#2157 …}
+favourites: Doctrine\ORM\PersistentCollection {#2147 …}
+notifications: Doctrine\ORM\PersistentCollection {#2150 …}
-id: 308637
-bodyTs: "'also':24,100 'approach':76 'bring':29 'continu':111 'deploy':47 'differ':79 'discov':88,108 'discuss':10 'due':67 'experi':71,112 'far':38 'feel':84 'figur':13 'help':11 'improv':33,43 'interest':91 'knew':20 'learn':96,106 'like':85 'limit':70 'linux':35 'machin':50 'may':63,87 'need':59 'new':31 'nixo':27,73,75 'other':81 'problem':18 'quit':78 're':2 'sake':104 'see':41 'server':45 'sever':49 'singl':55 'someth':30,89 'spot':3 'standard':58 'statement':62 'still':40 'thought':25 'usag':36 'user':56 'would':28 'wrong':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7377162"
+editedAt: null
+createdAt: DateTimeImmutable @1705257345 {#2260
date: 2024-01-14 19:35:45.0 +01:00
}
} |
|
Show voter details
|
35 |
DENIED
|
edit
|
App\Entity\EntryComment {#2188
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2142 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2142 …}
+body: """
You’re spot on and that’s what this discussion helped me figure out: I have no problem. I knew that but I also thought that NixOS would bring something new to improve my Linux usage. So far I still see such improvements for servers or deployment on several machines but not for a single user with standard needs (and this statement may be wrong and due to my limited experience with NixOS).\n
\n
But NixOS approach is quite different from others and I feel like I may discover something of interest to me once I learn more about it. Also, just for the sake of learning and discovering, I will continue experimenting with it for a while.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705257345 {#2244
date: 2024-01-14 19:35:45.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@java@beehaw.org"
]
+children: Doctrine\ORM\PersistentCollection {#2034 …}
+nested: Doctrine\ORM\PersistentCollection {#2156 …}
+votes: Doctrine\ORM\PersistentCollection {#2154 …}
+reports: Doctrine\ORM\PersistentCollection {#2157 …}
+favourites: Doctrine\ORM\PersistentCollection {#2147 …}
+notifications: Doctrine\ORM\PersistentCollection {#2150 …}
-id: 308637
-bodyTs: "'also':24,100 'approach':76 'bring':29 'continu':111 'deploy':47 'differ':79 'discov':88,108 'discuss':10 'due':67 'experi':71,112 'far':38 'feel':84 'figur':13 'help':11 'improv':33,43 'interest':91 'knew':20 'learn':96,106 'like':85 'limit':70 'linux':35 'machin':50 'may':63,87 'need':59 'new':31 'nixo':27,73,75 'other':81 'problem':18 'quit':78 're':2 'sake':104 'see':41 'server':45 'sever':49 'singl':55 'someth':30,89 'spot':3 'standard':58 'statement':62 'still':40 'thought':25 'usag':36 'user':56 'would':28 'wrong':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7377162"
+editedAt: null
+createdAt: DateTimeImmutable @1705257345 {#2260
date: 2024-01-14 19:35:45.0 +01:00
}
} |
|
Show voter details
|
36 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2188
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2142 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2142 …}
+body: """
You’re spot on and that’s what this discussion helped me figure out: I have no problem. I knew that but I also thought that NixOS would bring something new to improve my Linux usage. So far I still see such improvements for servers or deployment on several machines but not for a single user with standard needs (and this statement may be wrong and due to my limited experience with NixOS).\n
\n
But NixOS approach is quite different from others and I feel like I may discover something of interest to me once I learn more about it. Also, just for the sake of learning and discovering, I will continue experimenting with it for a while.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705257345 {#2244
date: 2024-01-14 19:35:45.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@java@beehaw.org"
]
+children: Doctrine\ORM\PersistentCollection {#2034 …}
+nested: Doctrine\ORM\PersistentCollection {#2156 …}
+votes: Doctrine\ORM\PersistentCollection {#2154 …}
+reports: Doctrine\ORM\PersistentCollection {#2157 …}
+favourites: Doctrine\ORM\PersistentCollection {#2147 …}
+notifications: Doctrine\ORM\PersistentCollection {#2150 …}
-id: 308637
-bodyTs: "'also':24,100 'approach':76 'bring':29 'continu':111 'deploy':47 'differ':79 'discov':88,108 'discuss':10 'due':67 'experi':71,112 'far':38 'feel':84 'figur':13 'help':11 'improv':33,43 'interest':91 'knew':20 'learn':96,106 'like':85 'limit':70 'linux':35 'machin':50 'may':63,87 'need':59 'new':31 'nixo':27,73,75 'other':81 'problem':18 'quit':78 're':2 'sake':104 'see':41 'server':45 'sever':49 'singl':55 'someth':30,89 'spot':3 'standard':58 'statement':62 'still':40 'thought':25 'usag':36 'user':56 'would':28 'wrong':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7377162"
+editedAt: null
+createdAt: DateTimeImmutable @1705257345 {#2260
date: 2024-01-14 19:35:45.0 +01:00
}
} |
|
Show voter details
|
37 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
38 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2146
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2185 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
I use [ytfzf](https://github.com/pystardust/ytfzf/tree/master) to search/watch videos on YouTube, Peertube, Odysee. \n
It has several add-ons including one for playlists. I didn’t try it though.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1705250100 {#2287
date: 2024-01-14 17:35:00.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Trent@lemmy.ml"
"@Trent@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2180 …}
+nested: Doctrine\ORM\PersistentCollection {#2181 …}
+votes: Doctrine\ORM\PersistentCollection {#2171 …}
+reports: Doctrine\ORM\PersistentCollection {#2186 …}
+favourites: Doctrine\ORM\PersistentCollection {#2187 …}
+notifications: Doctrine\ORM\PersistentCollection {#2177 …}
-id: 308327
-bodyTs: "'/pystardust/ytfzf/tree/master)':6 'add':18 'add-on':17 'didn':25 'github.com':5 'github.com/pystardust/ytfzf/tree/master)':4 'includ':20 'odyse':13 'on':19 'one':21 'peertub':12 'playlist':23 'search/watch':8 'sever':16 'though':29 'tri':27 'use':2 'video':9 'youtub':11 'ytfzf':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7374648"
+editedAt: DateTimeImmutable @1723291145 {#2286
date: 2024-08-10 13:59:05.0 +02:00
}
+createdAt: DateTimeImmutable @1705250100 {#2110
date: 2024-01-14 17:35:00.0 +01:00
}
} |
|
Show voter details
|
39 |
DENIED
|
edit
|
App\Entity\EntryComment {#2146
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2185 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
I use [ytfzf](https://github.com/pystardust/ytfzf/tree/master) to search/watch videos on YouTube, Peertube, Odysee. \n
It has several add-ons including one for playlists. I didn’t try it though.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1705250100 {#2287
date: 2024-01-14 17:35:00.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Trent@lemmy.ml"
"@Trent@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2180 …}
+nested: Doctrine\ORM\PersistentCollection {#2181 …}
+votes: Doctrine\ORM\PersistentCollection {#2171 …}
+reports: Doctrine\ORM\PersistentCollection {#2186 …}
+favourites: Doctrine\ORM\PersistentCollection {#2187 …}
+notifications: Doctrine\ORM\PersistentCollection {#2177 …}
-id: 308327
-bodyTs: "'/pystardust/ytfzf/tree/master)':6 'add':18 'add-on':17 'didn':25 'github.com':5 'github.com/pystardust/ytfzf/tree/master)':4 'includ':20 'odyse':13 'on':19 'one':21 'peertub':12 'playlist':23 'search/watch':8 'sever':16 'though':29 'tri':27 'use':2 'video':9 'youtub':11 'ytfzf':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7374648"
+editedAt: DateTimeImmutable @1723291145 {#2286
date: 2024-08-10 13:59:05.0 +02:00
}
+createdAt: DateTimeImmutable @1705250100 {#2110
date: 2024-01-14 17:35:00.0 +01:00
}
} |
|
Show voter details
|
40 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2146
+user: App\Entity\User {#265 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2185 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: null
+root: null
+body: """
I use [ytfzf](https://github.com/pystardust/ytfzf/tree/master) to search/watch videos on YouTube, Peertube, Odysee. \n
It has several add-ons including one for playlists. I didn’t try it though.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1705250100 {#2287
date: 2024-01-14 17:35:00.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Trent@lemmy.ml"
"@Trent@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2180 …}
+nested: Doctrine\ORM\PersistentCollection {#2181 …}
+votes: Doctrine\ORM\PersistentCollection {#2171 …}
+reports: Doctrine\ORM\PersistentCollection {#2186 …}
+favourites: Doctrine\ORM\PersistentCollection {#2187 …}
+notifications: Doctrine\ORM\PersistentCollection {#2177 …}
-id: 308327
-bodyTs: "'/pystardust/ytfzf/tree/master)':6 'add':18 'add-on':17 'didn':25 'github.com':5 'github.com/pystardust/ytfzf/tree/master)':4 'includ':20 'odyse':13 'on':19 'one':21 'peertub':12 'playlist':23 'search/watch':8 'sever':16 'though':29 'tri':27 'use':2 'video':9 'youtub':11 'ytfzf':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7374648"
+editedAt: DateTimeImmutable @1723291145 {#2286
date: 2024-08-10 13:59:05.0 +02:00
}
+createdAt: DateTimeImmutable @1705250100 {#2110
date: 2024-01-14 17:35:00.0 +01:00
}
} |
|
Show voter details
|
41 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
42 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2170
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2183 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2183 …}
+body: "That’s indeed pretty neat."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705244645 {#2149
date: 2024-01-14 16:04:05.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@kionite231@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#2184 …}
+nested: Doctrine\ORM\PersistentCollection {#2169 …}
+votes: Doctrine\ORM\PersistentCollection {#2134 …}
+reports: Doctrine\ORM\PersistentCollection {#1985 …}
+favourites: Doctrine\ORM\PersistentCollection {#1994 …}
+notifications: Doctrine\ORM\PersistentCollection {#2005 …}
-id: 308093
-bodyTs: "'inde':3 'neat':5 'pretti':4"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7372845"
+editedAt: null
+createdAt: DateTimeImmutable @1705244645 {#2148
date: 2024-01-14 16:04:05.0 +01:00
}
} |
|
Show voter details
|
43 |
DENIED
|
edit
|
App\Entity\EntryComment {#2170
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2183 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2183 …}
+body: "That’s indeed pretty neat."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705244645 {#2149
date: 2024-01-14 16:04:05.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@kionite231@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#2184 …}
+nested: Doctrine\ORM\PersistentCollection {#2169 …}
+votes: Doctrine\ORM\PersistentCollection {#2134 …}
+reports: Doctrine\ORM\PersistentCollection {#1985 …}
+favourites: Doctrine\ORM\PersistentCollection {#1994 …}
+notifications: Doctrine\ORM\PersistentCollection {#2005 …}
-id: 308093
-bodyTs: "'inde':3 'neat':5 'pretti':4"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7372845"
+editedAt: null
+createdAt: DateTimeImmutable @1705244645 {#2148
date: 2024-01-14 16:04:05.0 +01:00
}
} |
|
Show voter details
|
44 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2170
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2183 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2183 …}
+body: "That’s indeed pretty neat."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705244645 {#2149
date: 2024-01-14 16:04:05.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@kionite231@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#2184 …}
+nested: Doctrine\ORM\PersistentCollection {#2169 …}
+votes: Doctrine\ORM\PersistentCollection {#2134 …}
+reports: Doctrine\ORM\PersistentCollection {#1985 …}
+favourites: Doctrine\ORM\PersistentCollection {#1994 …}
+notifications: Doctrine\ORM\PersistentCollection {#2005 …}
-id: 308093
-bodyTs: "'inde':3 'neat':5 'pretti':4"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7372845"
+editedAt: null
+createdAt: DateTimeImmutable @1705244645 {#2148
date: 2024-01-14 16:04:05.0 +01:00
}
} |
|
Show voter details
|
45 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
46 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1998
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#1992 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2001 …}
+body: """
Right, I totally agree. If I would have to deploy my config on several machines or create dedicated config using a common base then I would have been convinced. I’m still not convinced from a dummy single user point of view but I still believe in this distro and like its approach so I’ll continue experimenting with it and we’ll see where my journey leads me.\n
\n
At least for now I’m glad to have a new toy I can mess up with. With my Arch system I was getting this weird feeling where I was happy to have an efficient and stable machine while at the same time being bored to have nothing to test/tweak/destroy and rebuild. I mean I love to learn and discover new things so I experiment a bunch of applications and parameters I will never need anyway but it becomes harder and harder to find something that keeps me entertained for more than a day.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705209881 {#2178
date: 2024-01-14 06:24:41.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@dinckelman@lemmy.world"
"@BCsven@lemmy.ca"
"@wwwgem@lemmy.ml"
"@dinckelman@lemmy.world"
"@BCsven@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#2002 …}
+nested: Doctrine\ORM\PersistentCollection {#2000 …}
+votes: Doctrine\ORM\PersistentCollection {#2007 …}
+reports: Doctrine\ORM\PersistentCollection {#1990 …}
+favourites: Doctrine\ORM\PersistentCollection {#2010 …}
+notifications: Doctrine\ORM\PersistentCollection {#2014 …}
-id: 307093
-bodyTs: "'agre':4 'anyway':145 'applic':138 'approach':53 'arch':89 'base':23 'becom':148 'believ':46 'bore':114 'bunch':136 'common':22 'config':12,19 'continu':57 'convinc':29,34 'creat':17 'day':163 'dedic':18 'deploy':10 'discov':129 'distro':49 'dummi':37 'effici':104 'entertain':158 'experi':58,134 'feel':96 'find':153 'get':93 'glad':76 'happi':100 'harder':149,151 'journey':67 'keep':156 'lead':68 'learn':127 'least':71 'like':51 'll':56,63 'love':125 'm':31,75 'machin':15,107 'mean':123 'mess':84 'need':144 'never':143 'new':80,130 'noth':117 'paramet':140 'point':40 'rebuild':121 'right':1 'see':64 'sever':14 'singl':38 'someth':154 'stabl':106 'still':32,45 'system':90 'test/tweak/destroy':119 'thing':131 'time':112 'total':3 'toy':81 'use':20 'user':39 'view':42 'weird':95 'would':7,26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7355053"
+editedAt: DateTimeImmutable @1723047172 {#2174
date: 2024-08-07 18:12:52.0 +02:00
}
+createdAt: DateTimeImmutable @1705209881 {#2153
date: 2024-01-14 06:24:41.0 +01:00
}
} |
|
Show voter details
|
47 |
DENIED
|
edit
|
App\Entity\EntryComment {#1998
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#1992 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2001 …}
+body: """
Right, I totally agree. If I would have to deploy my config on several machines or create dedicated config using a common base then I would have been convinced. I’m still not convinced from a dummy single user point of view but I still believe in this distro and like its approach so I’ll continue experimenting with it and we’ll see where my journey leads me.\n
\n
At least for now I’m glad to have a new toy I can mess up with. With my Arch system I was getting this weird feeling where I was happy to have an efficient and stable machine while at the same time being bored to have nothing to test/tweak/destroy and rebuild. I mean I love to learn and discover new things so I experiment a bunch of applications and parameters I will never need anyway but it becomes harder and harder to find something that keeps me entertained for more than a day.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705209881 {#2178
date: 2024-01-14 06:24:41.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@dinckelman@lemmy.world"
"@BCsven@lemmy.ca"
"@wwwgem@lemmy.ml"
"@dinckelman@lemmy.world"
"@BCsven@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#2002 …}
+nested: Doctrine\ORM\PersistentCollection {#2000 …}
+votes: Doctrine\ORM\PersistentCollection {#2007 …}
+reports: Doctrine\ORM\PersistentCollection {#1990 …}
+favourites: Doctrine\ORM\PersistentCollection {#2010 …}
+notifications: Doctrine\ORM\PersistentCollection {#2014 …}
-id: 307093
-bodyTs: "'agre':4 'anyway':145 'applic':138 'approach':53 'arch':89 'base':23 'becom':148 'believ':46 'bore':114 'bunch':136 'common':22 'config':12,19 'continu':57 'convinc':29,34 'creat':17 'day':163 'dedic':18 'deploy':10 'discov':129 'distro':49 'dummi':37 'effici':104 'entertain':158 'experi':58,134 'feel':96 'find':153 'get':93 'glad':76 'happi':100 'harder':149,151 'journey':67 'keep':156 'lead':68 'learn':127 'least':71 'like':51 'll':56,63 'love':125 'm':31,75 'machin':15,107 'mean':123 'mess':84 'need':144 'never':143 'new':80,130 'noth':117 'paramet':140 'point':40 'rebuild':121 'right':1 'see':64 'sever':14 'singl':38 'someth':154 'stabl':106 'still':32,45 'system':90 'test/tweak/destroy':119 'thing':131 'time':112 'total':3 'toy':81 'use':20 'user':39 'view':42 'weird':95 'would':7,26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7355053"
+editedAt: DateTimeImmutable @1723047172 {#2174
date: 2024-08-07 18:12:52.0 +02:00
}
+createdAt: DateTimeImmutable @1705209881 {#2153
date: 2024-01-14 06:24:41.0 +01:00
}
} |
|
Show voter details
|
48 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1998
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#1992 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2001 …}
+body: """
Right, I totally agree. If I would have to deploy my config on several machines or create dedicated config using a common base then I would have been convinced. I’m still not convinced from a dummy single user point of view but I still believe in this distro and like its approach so I’ll continue experimenting with it and we’ll see where my journey leads me.\n
\n
At least for now I’m glad to have a new toy I can mess up with. With my Arch system I was getting this weird feeling where I was happy to have an efficient and stable machine while at the same time being bored to have nothing to test/tweak/destroy and rebuild. I mean I love to learn and discover new things so I experiment a bunch of applications and parameters I will never need anyway but it becomes harder and harder to find something that keeps me entertained for more than a day.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705209881 {#2178
date: 2024-01-14 06:24:41.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@dinckelman@lemmy.world"
"@BCsven@lemmy.ca"
"@wwwgem@lemmy.ml"
"@dinckelman@lemmy.world"
"@BCsven@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#2002 …}
+nested: Doctrine\ORM\PersistentCollection {#2000 …}
+votes: Doctrine\ORM\PersistentCollection {#2007 …}
+reports: Doctrine\ORM\PersistentCollection {#1990 …}
+favourites: Doctrine\ORM\PersistentCollection {#2010 …}
+notifications: Doctrine\ORM\PersistentCollection {#2014 …}
-id: 307093
-bodyTs: "'agre':4 'anyway':145 'applic':138 'approach':53 'arch':89 'base':23 'becom':148 'believ':46 'bore':114 'bunch':136 'common':22 'config':12,19 'continu':57 'convinc':29,34 'creat':17 'day':163 'dedic':18 'deploy':10 'discov':129 'distro':49 'dummi':37 'effici':104 'entertain':158 'experi':58,134 'feel':96 'find':153 'get':93 'glad':76 'happi':100 'harder':149,151 'journey':67 'keep':156 'lead':68 'learn':127 'least':71 'like':51 'll':56,63 'love':125 'm':31,75 'machin':15,107 'mean':123 'mess':84 'need':144 'never':143 'new':80,130 'noth':117 'paramet':140 'point':40 'rebuild':121 'right':1 'see':64 'sever':14 'singl':38 'someth':154 'stabl':106 'still':32,45 'system':90 'test/tweak/destroy':119 'thing':131 'time':112 'total':3 'toy':81 'use':20 'user':39 'view':42 'weird':95 'would':7,26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7355053"
+editedAt: DateTimeImmutable @1723047172 {#2174
date: 2024-08-07 18:12:52.0 +02:00
}
+createdAt: DateTimeImmutable @1705209881 {#2153
date: 2024-01-14 06:24:41.0 +01:00
}
} |
|
Show voter details
|
49 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
50 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2008
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#1984 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#1984 …}
+body: "Or maybe I’m already too old for so much tech. But thanks for letting me think that I’m still a young boy ^^ Not helping with my question but pretty self satisfactory."
+lang: "en"
+isAdult: false
+favouriteCount: 7
+score: 0
+lastActive: DateTime @1705208481 {#1993
date: 2024-01-14 06:01:21.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@chaorace@lemmy.sdf.org"
"@wwwgem@lemmy.ml"
"@chaorace@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#1987 …}
+nested: Doctrine\ORM\PersistentCollection {#1983 …}
+votes: Doctrine\ORM\PersistentCollection {#1979 …}
+reports: Doctrine\ORM\PersistentCollection {#2368 …}
+favourites: Doctrine\ORM\PersistentCollection {#2373 …}
+notifications: Doctrine\ORM\PersistentCollection {#2376 …}
-id: 307067
-bodyTs: "'alreadi':5 'boy':24 'help':26 'let':15 'm':4,20 'mayb':2 'much':10 'old':7 'pretti':31 'question':29 'satisfactori':33 'self':32 'still':21 'tech':11 'thank':13 'think':17 'young':23"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7354148"
+editedAt: DateTimeImmutable @1723037162 {#1997
date: 2024-08-07 15:26:02.0 +02:00
}
+createdAt: DateTimeImmutable @1705208481 {#1996
date: 2024-01-14 06:01:21.0 +01:00
}
} |
|
Show voter details
|
51 |
DENIED
|
edit
|
App\Entity\EntryComment {#2008
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#1984 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#1984 …}
+body: "Or maybe I’m already too old for so much tech. But thanks for letting me think that I’m still a young boy ^^ Not helping with my question but pretty self satisfactory."
+lang: "en"
+isAdult: false
+favouriteCount: 7
+score: 0
+lastActive: DateTime @1705208481 {#1993
date: 2024-01-14 06:01:21.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@chaorace@lemmy.sdf.org"
"@wwwgem@lemmy.ml"
"@chaorace@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#1987 …}
+nested: Doctrine\ORM\PersistentCollection {#1983 …}
+votes: Doctrine\ORM\PersistentCollection {#1979 …}
+reports: Doctrine\ORM\PersistentCollection {#2368 …}
+favourites: Doctrine\ORM\PersistentCollection {#2373 …}
+notifications: Doctrine\ORM\PersistentCollection {#2376 …}
-id: 307067
-bodyTs: "'alreadi':5 'boy':24 'help':26 'let':15 'm':4,20 'mayb':2 'much':10 'old':7 'pretti':31 'question':29 'satisfactori':33 'self':32 'still':21 'tech':11 'thank':13 'think':17 'young':23"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7354148"
+editedAt: DateTimeImmutable @1723037162 {#1997
date: 2024-08-07 15:26:02.0 +02:00
}
+createdAt: DateTimeImmutable @1705208481 {#1996
date: 2024-01-14 06:01:21.0 +01:00
}
} |
|
Show voter details
|
52 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2008
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#1984 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#1984 …}
+body: "Or maybe I’m already too old for so much tech. But thanks for letting me think that I’m still a young boy ^^ Not helping with my question but pretty self satisfactory."
+lang: "en"
+isAdult: false
+favouriteCount: 7
+score: 0
+lastActive: DateTime @1705208481 {#1993
date: 2024-01-14 06:01:21.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@chaorace@lemmy.sdf.org"
"@wwwgem@lemmy.ml"
"@chaorace@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#1987 …}
+nested: Doctrine\ORM\PersistentCollection {#1983 …}
+votes: Doctrine\ORM\PersistentCollection {#1979 …}
+reports: Doctrine\ORM\PersistentCollection {#2368 …}
+favourites: Doctrine\ORM\PersistentCollection {#2373 …}
+notifications: Doctrine\ORM\PersistentCollection {#2376 …}
-id: 307067
-bodyTs: "'alreadi':5 'boy':24 'help':26 'let':15 'm':4,20 'mayb':2 'much':10 'old':7 'pretti':31 'question':29 'satisfactori':33 'self':32 'still':21 'tech':11 'thank':13 'think':17 'young':23"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7354148"
+editedAt: DateTimeImmutable @1723037162 {#1997
date: 2024-08-07 15:26:02.0 +02:00
}
+createdAt: DateTimeImmutable @1705208481 {#1996
date: 2024-01-14 06:01:21.0 +01:00
}
} |
|
Show voter details
|
53 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
54 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2366
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2269 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2001 …}
+body: "Due to the still early development of NixOS, Home manager is in some ways very similar to nix-env and flakes is still highly experimental. Also, the configuration parameters are changing quite significantly with the distro development. I’m sure this will all settle down when the distro will become more mature but to be honest that’s also what attracts me. I like chaos ^^ Seriously, this shows me some potential for great achievements. I will continue testing NixOS but for now I didn’t find THE reason to leave Arch yet. If I would have to deploy my config on several machines or create dedicated config using a common base then I would have been convinced. Will see where my journey leads me."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705208439 {#2017
date: 2024-01-14 06:00:39.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@dinckelman@lemmy.world"
"@sashanoraa@lemmy.blahaj.zone"
]
+children: Doctrine\ORM\PersistentCollection {#2352 …}
+nested: Doctrine\ORM\PersistentCollection {#1348 …}
+votes: Doctrine\ORM\PersistentCollection {#1349 …}
+reports: Doctrine\ORM\PersistentCollection {#1352 …}
+favourites: Doctrine\ORM\PersistentCollection {#1354 …}
+notifications: Doctrine\ORM\PersistentCollection {#1356 …}
-id: 307064
-bodyTs: "'achiev':75 'also':27,60 'arch':92 'attract':62 'base':112 'becom':51 'chang':32 'chao':66 'common':111 'config':101,108 'configur':29 'continu':78 'convinc':118 'creat':106 'dedic':107 'deploy':99 'develop':6,38 'didn':85 'distro':37,49 'due':1 'earli':5 'env':20 'experiment':26 'find':87 'flake':22 'great':74 'high':25 'home':9 'honest':57 'journey':123 'lead':124 'leav':91 'like':65 'm':40 'machin':104 'manag':10 'matur':53 'nix':19 'nix-env':18 'nixo':8,80 'paramet':30 'potenti':72 'quit':33 'reason':89 'see':120 'serious':67 'settl':45 'sever':103 'show':69 'signific':34 'similar':16 'still':4,24 'sure':41 'test':79 'use':109 'way':14 'would':96,115 'yet':93"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7354108"
+editedAt: null
+createdAt: DateTimeImmutable @1705208439 {#2015
date: 2024-01-14 06:00:39.0 +01:00
}
} |
|
Show voter details
|
55 |
DENIED
|
edit
|
App\Entity\EntryComment {#2366
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2269 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2001 …}
+body: "Due to the still early development of NixOS, Home manager is in some ways very similar to nix-env and flakes is still highly experimental. Also, the configuration parameters are changing quite significantly with the distro development. I’m sure this will all settle down when the distro will become more mature but to be honest that’s also what attracts me. I like chaos ^^ Seriously, this shows me some potential for great achievements. I will continue testing NixOS but for now I didn’t find THE reason to leave Arch yet. If I would have to deploy my config on several machines or create dedicated config using a common base then I would have been convinced. Will see where my journey leads me."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705208439 {#2017
date: 2024-01-14 06:00:39.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@dinckelman@lemmy.world"
"@sashanoraa@lemmy.blahaj.zone"
]
+children: Doctrine\ORM\PersistentCollection {#2352 …}
+nested: Doctrine\ORM\PersistentCollection {#1348 …}
+votes: Doctrine\ORM\PersistentCollection {#1349 …}
+reports: Doctrine\ORM\PersistentCollection {#1352 …}
+favourites: Doctrine\ORM\PersistentCollection {#1354 …}
+notifications: Doctrine\ORM\PersistentCollection {#1356 …}
-id: 307064
-bodyTs: "'achiev':75 'also':27,60 'arch':92 'attract':62 'base':112 'becom':51 'chang':32 'chao':66 'common':111 'config':101,108 'configur':29 'continu':78 'convinc':118 'creat':106 'dedic':107 'deploy':99 'develop':6,38 'didn':85 'distro':37,49 'due':1 'earli':5 'env':20 'experiment':26 'find':87 'flake':22 'great':74 'high':25 'home':9 'honest':57 'journey':123 'lead':124 'leav':91 'like':65 'm':40 'machin':104 'manag':10 'matur':53 'nix':19 'nix-env':18 'nixo':8,80 'paramet':30 'potenti':72 'quit':33 'reason':89 'see':120 'serious':67 'settl':45 'sever':103 'show':69 'signific':34 'similar':16 'still':4,24 'sure':41 'test':79 'use':109 'way':14 'would':96,115 'yet':93"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7354108"
+editedAt: null
+createdAt: DateTimeImmutable @1705208439 {#2015
date: 2024-01-14 06:00:39.0 +01:00
}
} |
|
Show voter details
|
56 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2366
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2269 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2001 …}
+body: "Due to the still early development of NixOS, Home manager is in some ways very similar to nix-env and flakes is still highly experimental. Also, the configuration parameters are changing quite significantly with the distro development. I’m sure this will all settle down when the distro will become more mature but to be honest that’s also what attracts me. I like chaos ^^ Seriously, this shows me some potential for great achievements. I will continue testing NixOS but for now I didn’t find THE reason to leave Arch yet. If I would have to deploy my config on several machines or create dedicated config using a common base then I would have been convinced. Will see where my journey leads me."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1705208439 {#2017
date: 2024-01-14 06:00:39.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@dinckelman@lemmy.world"
"@sashanoraa@lemmy.blahaj.zone"
]
+children: Doctrine\ORM\PersistentCollection {#2352 …}
+nested: Doctrine\ORM\PersistentCollection {#1348 …}
+votes: Doctrine\ORM\PersistentCollection {#1349 …}
+reports: Doctrine\ORM\PersistentCollection {#1352 …}
+favourites: Doctrine\ORM\PersistentCollection {#1354 …}
+notifications: Doctrine\ORM\PersistentCollection {#1356 …}
-id: 307064
-bodyTs: "'achiev':75 'also':27,60 'arch':92 'attract':62 'base':112 'becom':51 'chang':32 'chao':66 'common':111 'config':101,108 'configur':29 'continu':78 'convinc':118 'creat':106 'dedic':107 'deploy':99 'develop':6,38 'didn':85 'distro':37,49 'due':1 'earli':5 'env':20 'experiment':26 'find':87 'flake':22 'great':74 'high':25 'home':9 'honest':57 'journey':123 'lead':124 'leav':91 'like':65 'm':40 'machin':104 'manag':10 'matur':53 'nix':19 'nix-env':18 'nixo':8,80 'paramet':30 'potenti':72 'quit':33 'reason':89 'see':120 'serious':67 'settl':45 'sever':103 'show':69 'signific':34 'similar':16 'still':4,24 'sure':41 'test':79 'use':109 'way':14 'would':96,115 'yet':93"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7354108"
+editedAt: null
+createdAt: DateTimeImmutable @1705208439 {#2015
date: 2024-01-14 06:00:39.0 +01:00
}
} |
|
Show voter details
|
57 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
58 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2493
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2494 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2495 …}
+body: """
Great feedback, thanks! I’ve appreciated being able to replicate my system in NixOS within only few hours. I found NixOS actually pretty easy to take a grasp on, though I still didn’t look at flakes in detail. You spot on the reason why I’m using Arch and a bunch of applications you can tweak to perfectly meet your own specific needs (neovim, neomutt, bspwm, rofi…).\n
\n
I love spending time to config them and to learn new things. This is basically why I’m interested in NixOS as well. Being entirely satisfied with Arch and not being a distro hopper, the fact that I installed NixOS means a lot to me but now I need tangible reasons to fully move to it. Maybe time will help me in my decision.\n
\n
All the great feedback in response to this post so far confirm how great NixOS is and I had no doubt about that. I may realize what it can bring me after some weeks of serious use. Thanks again for the time spent to write your feedback, very much appreciated
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1705191567 {#2367
date: 2024-01-14 01:19:27.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@savvywolf@pawb.social"
"@cybersandwich@lemmy.world"
"@wwwgem@lemmy.ml"
"@savvywolf@pawb.social"
"@cybersandwich@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2496 …}
+nested: Doctrine\ORM\PersistentCollection {#2498 …}
+votes: Doctrine\ORM\PersistentCollection {#2500 …}
+reports: Doctrine\ORM\PersistentCollection {#2502 …}
+favourites: Doctrine\ORM\PersistentCollection {#2504 …}
+notifications: Doctrine\ORM\PersistentCollection {#2506 …}
-id: 306605
-bodyTs: "'abl':8 'actual':22 'applic':54 'appreci':6,182 'arch':49,96 'basic':83 'bring':162 'bspwm':67 'bunch':52 'config':74 'confirm':144 'decis':132 'detail':39 'didn':33 'distro':101 'doubt':153 'easi':24 'entir':93 'fact':104 'far':143 'feedback':2,136,179 'flake':37 'found':20 'fulli':121 'grasp':28 'great':1,135,146 'help':128 'hopper':102 'hour':18 'instal':107 'interest':87 'learn':78 'look':35 'lot':111 'love':70 'm':47,86 'may':157 'mayb':125 'mean':109 'meet':60 'move':122 'much':181 'need':64,117 'neomutt':66 'neovim':65 'new':79 'nixo':14,21,89,108,147 'perfect':59 'post':141 'pretti':23 'realiz':158 'reason':44,119 'replic':10 'respons':138 'rofi':68 'satisfi':94 'serious':168 'specif':63 'spend':71 'spent':175 'spot':41 'still':32 'system':12 'take':26 'tangibl':118 'thank':3,170 'thing':80 'though':30 'time':72,126,174 'tweak':57 'use':48,169 've':5 'week':166 'well':91 'within':15 'write':177"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7343159"
+editedAt: DateTimeImmutable @1722917997 {#2365
date: 2024-08-06 06:19:57.0 +02:00
}
+createdAt: DateTimeImmutable @1705191567 {#2016
date: 2024-01-14 01:19:27.0 +01:00
}
} |
|
Show voter details
|
59 |
DENIED
|
edit
|
App\Entity\EntryComment {#2493
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2494 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2495 …}
+body: """
Great feedback, thanks! I’ve appreciated being able to replicate my system in NixOS within only few hours. I found NixOS actually pretty easy to take a grasp on, though I still didn’t look at flakes in detail. You spot on the reason why I’m using Arch and a bunch of applications you can tweak to perfectly meet your own specific needs (neovim, neomutt, bspwm, rofi…).\n
\n
I love spending time to config them and to learn new things. This is basically why I’m interested in NixOS as well. Being entirely satisfied with Arch and not being a distro hopper, the fact that I installed NixOS means a lot to me but now I need tangible reasons to fully move to it. Maybe time will help me in my decision.\n
\n
All the great feedback in response to this post so far confirm how great NixOS is and I had no doubt about that. I may realize what it can bring me after some weeks of serious use. Thanks again for the time spent to write your feedback, very much appreciated
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1705191567 {#2367
date: 2024-01-14 01:19:27.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@savvywolf@pawb.social"
"@cybersandwich@lemmy.world"
"@wwwgem@lemmy.ml"
"@savvywolf@pawb.social"
"@cybersandwich@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2496 …}
+nested: Doctrine\ORM\PersistentCollection {#2498 …}
+votes: Doctrine\ORM\PersistentCollection {#2500 …}
+reports: Doctrine\ORM\PersistentCollection {#2502 …}
+favourites: Doctrine\ORM\PersistentCollection {#2504 …}
+notifications: Doctrine\ORM\PersistentCollection {#2506 …}
-id: 306605
-bodyTs: "'abl':8 'actual':22 'applic':54 'appreci':6,182 'arch':49,96 'basic':83 'bring':162 'bspwm':67 'bunch':52 'config':74 'confirm':144 'decis':132 'detail':39 'didn':33 'distro':101 'doubt':153 'easi':24 'entir':93 'fact':104 'far':143 'feedback':2,136,179 'flake':37 'found':20 'fulli':121 'grasp':28 'great':1,135,146 'help':128 'hopper':102 'hour':18 'instal':107 'interest':87 'learn':78 'look':35 'lot':111 'love':70 'm':47,86 'may':157 'mayb':125 'mean':109 'meet':60 'move':122 'much':181 'need':64,117 'neomutt':66 'neovim':65 'new':79 'nixo':14,21,89,108,147 'perfect':59 'post':141 'pretti':23 'realiz':158 'reason':44,119 'replic':10 'respons':138 'rofi':68 'satisfi':94 'serious':168 'specif':63 'spend':71 'spent':175 'spot':41 'still':32 'system':12 'take':26 'tangibl':118 'thank':3,170 'thing':80 'though':30 'time':72,126,174 'tweak':57 'use':48,169 've':5 'week':166 'well':91 'within':15 'write':177"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7343159"
+editedAt: DateTimeImmutable @1722917997 {#2365
date: 2024-08-06 06:19:57.0 +02:00
}
+createdAt: DateTimeImmutable @1705191567 {#2016
date: 2024-01-14 01:19:27.0 +01:00
}
} |
|
Show voter details
|
60 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2493
+user: App\Entity\User {#265 …}
+entry: App\Entity\Entry {#2385 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1740 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2494 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2495 …}
+body: """
Great feedback, thanks! I’ve appreciated being able to replicate my system in NixOS within only few hours. I found NixOS actually pretty easy to take a grasp on, though I still didn’t look at flakes in detail. You spot on the reason why I’m using Arch and a bunch of applications you can tweak to perfectly meet your own specific needs (neovim, neomutt, bspwm, rofi…).\n
\n
I love spending time to config them and to learn new things. This is basically why I’m interested in NixOS as well. Being entirely satisfied with Arch and not being a distro hopper, the fact that I installed NixOS means a lot to me but now I need tangible reasons to fully move to it. Maybe time will help me in my decision.\n
\n
All the great feedback in response to this post so far confirm how great NixOS is and I had no doubt about that. I may realize what it can bring me after some weeks of serious use. Thanks again for the time spent to write your feedback, very much appreciated
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1705191567 {#2367
date: 2024-01-14 01:19:27.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@wwwgem@lemmy.ml"
"@savvywolf@pawb.social"
"@cybersandwich@lemmy.world"
"@wwwgem@lemmy.ml"
"@savvywolf@pawb.social"
"@cybersandwich@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2496 …}
+nested: Doctrine\ORM\PersistentCollection {#2498 …}
+votes: Doctrine\ORM\PersistentCollection {#2500 …}
+reports: Doctrine\ORM\PersistentCollection {#2502 …}
+favourites: Doctrine\ORM\PersistentCollection {#2504 …}
+notifications: Doctrine\ORM\PersistentCollection {#2506 …}
-id: 306605
-bodyTs: "'abl':8 'actual':22 'applic':54 'appreci':6,182 'arch':49,96 'basic':83 'bring':162 'bspwm':67 'bunch':52 'config':74 'confirm':144 'decis':132 'detail':39 'didn':33 'distro':101 'doubt':153 'easi':24 'entir':93 'fact':104 'far':143 'feedback':2,136,179 'flake':37 'found':20 'fulli':121 'grasp':28 'great':1,135,146 'help':128 'hopper':102 'hour':18 'instal':107 'interest':87 'learn':78 'look':35 'lot':111 'love':70 'm':47,86 'may':157 'mayb':125 'mean':109 'meet':60 'move':122 'much':181 'need':64,117 'neomutt':66 'neovim':65 'new':79 'nixo':14,21,89,108,147 'perfect':59 'post':141 'pretti':23 'realiz':158 'reason':44,119 'replic':10 'respons':138 'rofi':68 'satisfi':94 'serious':168 'specif':63 'spend':71 'spent':175 'spot':41 'still':32 'system':12 'take':26 'tangibl':118 'thank':3,170 'thing':80 'though':30 'time':72,126,174 'tweak':57 'use':48,169 've':5 'week':166 'well':91 'within':15 'write':177"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/7343159"
+editedAt: DateTimeImmutable @1722917997 {#2365
date: 2024-08-06 06:19:57.0 +02:00
}
+createdAt: DateTimeImmutable @1705191567 {#2016
date: 2024-01-14 01:19:27.0 +01:00
}
} |
|
Show voter details
|