add nix-on-droid home config [WIP]
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/bluescape.jpg
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/galaxy.jpg
Executable file
|
After Width: | Height: | Size: 1007 KiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/kurisu.gif
Normal file
|
After Width: | Height: | Size: 110 MiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/kurisu.jpg
Normal file
|
After Width: | Height: | Size: 191 KiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/llenn.png
Normal file
|
After Width: | Height: | Size: 874 KiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/megumin.png
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/megumin1.gif
Normal file
|
After Width: | Height: | Size: 48 MiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/megumin2.gif
Normal file
|
After Width: | Height: | Size: 203 MiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/ngnl.jpg
Normal file
|
After Width: | Height: | Size: 670 KiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/orangescape.jpg
Normal file
|
After Width: | Height: | Size: 273 KiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/rezero.gif
Normal file
|
After Width: | Height: | Size: 140 MiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/sao.gif
Normal file
|
After Width: | Height: | Size: 3.1 MiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/sao.png
Normal file
|
After Width: | Height: | Size: 2.8 MiB |
BIN
home-manager/nix-on-droid/dotfiles/Wallpaper/sinon.gif
Normal file
|
After Width: | Height: | Size: 36 MiB |
15
home-manager/nix-on-droid/dotfiles/ags/README.md
Executable file
@@ -0,0 +1,15 @@
|
||||
|
||||
# Starter Config
|
||||
|
||||
if suggestions don't work, first make sure
|
||||
you have TypeScript LSP working in your editor
|
||||
|
||||
if you do not want typechecking only suggestions
|
||||
|
||||
```json
|
||||
// tsconfig.json
|
||||
"checkJs": false
|
||||
```
|
||||
|
||||
types are symlinked to:
|
||||
/home/nathan/.nix-profile/share/com.github.Aylur.ags/types
|
||||
34
home-manager/nix-on-droid/dotfiles/ags/bluetooth.js
Executable file
@@ -0,0 +1,34 @@
|
||||
const bluetooth = await Service.import("bluetooth")
|
||||
|
||||
|
||||
export function ConnectedList() {
|
||||
return Widget.Box({
|
||||
class_name: "btdevices",
|
||||
setup: self => self.hook(bluetooth, self => {
|
||||
self.children = bluetooth.connected_devices
|
||||
.map(({ address, icon_name, name }) => Widget.EventBox({
|
||||
child: Widget.Icon(icon_name + '-symbolic'),
|
||||
tooltip_text: name,
|
||||
on_primary_click: () => {
|
||||
bluetooth.getDevice(address).setConnection(false)
|
||||
},
|
||||
}));
|
||||
|
||||
self.visible = bluetooth.connected_devices.length > 0;
|
||||
}, 'notify::connected-devices'),
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export default function Bluetooth() {
|
||||
|
||||
|
||||
|
||||
return Widget.EventBox({
|
||||
tooltip_text: bluetooth.bind('enabled').as(on => on ? 'Enabled' : 'Disabled'),
|
||||
child: Widget.Icon({
|
||||
icon: bluetooth.bind('enabled').as(on =>
|
||||
`bluetooth-${on ? 'active' : 'disabled'}-symbolic`),
|
||||
})
|
||||
})
|
||||
}
|
||||
0
home-manager/nix-on-droid/dotfiles/ags/brightness.js
Executable file
14
home-manager/nix-on-droid/dotfiles/ags/clock.js
Executable file
@@ -0,0 +1,14 @@
|
||||
|
||||
|
||||
const date = Variable("", {
|
||||
poll: [1000, 'date "+%H:%M %b %e."'],
|
||||
})
|
||||
|
||||
function Clock() {
|
||||
return Widget.Label({
|
||||
class_name: "clock",
|
||||
label: date.bind(),
|
||||
})
|
||||
}
|
||||
|
||||
export default Clock
|
||||
132
home-manager/nix-on-droid/dotfiles/ags/config.js
Executable file
@@ -0,0 +1,132 @@
|
||||
|
||||
const hyprland = await Service.import("hyprland")
|
||||
//const systemtray = await Service.import("systemtray")
|
||||
|
||||
import Clock from './clock.js'
|
||||
import Launcher from './launcher.js'
|
||||
import Media from './media.js'
|
||||
import Notification from './notif.js'
|
||||
import Power from './power.js'
|
||||
import Workspaces from './workspaces.js'
|
||||
import Settings, {SettingsWindow} from './settings.js'
|
||||
import { ConnectedList } from './bluetooth.js'
|
||||
|
||||
import { NotificationPopups } from './notification.js'
|
||||
|
||||
|
||||
// widgets can be only assigned as a child in one container
|
||||
// so to make a reuseable widget, make it a function
|
||||
// then you can simply instantiate one by calling it
|
||||
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////
|
||||
// layout of the bar
|
||||
function Left() {
|
||||
return Widget.Box({
|
||||
spacing: 8,
|
||||
margin_bottom: 5,
|
||||
children: [
|
||||
Launcher(),
|
||||
Workspaces(),
|
||||
],
|
||||
})
|
||||
}
|
||||
|
||||
function Center() {
|
||||
return Widget.Box({
|
||||
spacing: 8,
|
||||
margin_bottom: 5,
|
||||
children: [
|
||||
Media(),
|
||||
Clock(),
|
||||
Notification(),
|
||||
],
|
||||
})
|
||||
}
|
||||
|
||||
function Right() {
|
||||
return Widget.Box({
|
||||
hpack: "end",
|
||||
spacing: 8,
|
||||
margin_bottom: 5,
|
||||
children: [
|
||||
ConnectedList(),
|
||||
Settings(),
|
||||
Power(),
|
||||
],
|
||||
})
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////
|
||||
//windows
|
||||
|
||||
function Bar(monitor = 0) {
|
||||
return Widget.Window({
|
||||
name: `bar-${monitor}`, // name has to be unique
|
||||
class_name: "bar",
|
||||
monitor,
|
||||
anchor: ["top", "left", "right"],
|
||||
height_request: 32,
|
||||
vexpand: false,
|
||||
exclusivity: "exclusive",
|
||||
child: Widget.CenterBox({
|
||||
start_widget: Left(),
|
||||
center_widget: Center(),
|
||||
end_widget: Right(),
|
||||
}),
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
function pickMonitor() {
|
||||
|
||||
let n = 0
|
||||
|
||||
for(let i = 0; i < hyprland.monitors.length; i++) {
|
||||
print(hyprland.getMonitor(i).name)
|
||||
if(hyprland.getMonitor(i).name == 'eDP-1')
|
||||
n = i
|
||||
break
|
||||
}
|
||||
|
||||
return n;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
//App config
|
||||
|
||||
let m = 0
|
||||
|
||||
App.config({
|
||||
style: "/home/nathan/.cache/wal/colors-ags.css",
|
||||
windows: [
|
||||
Bar(m),
|
||||
SettingsWindow(m),
|
||||
NotificationPopups(m)
|
||||
// you can call it, for each monitor
|
||||
// Bar(0),
|
||||
// Bar(1)
|
||||
],
|
||||
})
|
||||
|
||||
App.toggleWindow(App.windows[1].name)
|
||||
|
||||
// Utils.timeout(100, () => Utils.notify({
|
||||
// summary: "Notification Popup Example",
|
||||
// iconName: "info-symbolic",
|
||||
// body: "Lorem ipsum dolor sit amet, qui minim labore adipisicing "
|
||||
// + "minim sint cillum sint consectetur cupidatat.",
|
||||
// actions: {
|
||||
// "Cool": () => print("pressed Cool"),
|
||||
// },
|
||||
// }))
|
||||
|
||||
Utils.monitorFile(`/home/nathan/.cache/wal`, () => {
|
||||
const css = `/home/nathan/.cache/wal/colors-ags.css`
|
||||
App.resetCss()
|
||||
App.applyCss(css)
|
||||
})
|
||||
|
||||
export { }
|
||||
141
home-manager/nix-on-droid/dotfiles/ags/media.js
Executable file
@@ -0,0 +1,141 @@
|
||||
const mpris = await Service.import("mpris")
|
||||
|
||||
|
||||
export default function Media() {
|
||||
const track = Utils.watch("", mpris, "player-changed", () => {
|
||||
if (mpris.players[0]) {
|
||||
const { track_artists, track_title } = mpris.players[0]
|
||||
return `${track_artists.join(", ")} -${track_title}`
|
||||
} else {
|
||||
return "Nothing is playing"
|
||||
}
|
||||
})
|
||||
|
||||
return Widget.EventBox({
|
||||
class_name: "media",
|
||||
on_primary_click: () => mpris.getPlayer("")?.playPause(),
|
||||
on_scroll_up: () => mpris.getPlayer("")?.next(),
|
||||
on_scroll_down: () => mpris.getPlayer("")?.previous(),
|
||||
child: Widget.Icon({icon: 'emblem-music-symbolic'}),
|
||||
})
|
||||
}
|
||||
|
||||
function PlayerImg(player) {
|
||||
return Widget.Box({
|
||||
hpack: "start",
|
||||
width_request: 80,
|
||||
height_request: 80,
|
||||
css: player.bind("track_cover_url").transform(p => `
|
||||
background-image: url('${p || player.cover_path || '/home/nathan/Pictures/symbols/audio.png'}');
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
`),
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
|
||||
function PlayerGUI(player) {
|
||||
|
||||
|
||||
return Widget.Box({
|
||||
class_name: "playerbox",
|
||||
height_request: 200,
|
||||
vexpand: false,
|
||||
vertical: true,
|
||||
children: [
|
||||
Widget.Box({
|
||||
vertical: false,
|
||||
margin: 15,
|
||||
hpack: "start",
|
||||
spacing: 20,
|
||||
children: [
|
||||
PlayerImg(player),
|
||||
Widget.Box({
|
||||
vertical: true,
|
||||
children: [
|
||||
Widget.Label({
|
||||
hpack: "start",
|
||||
max_width_chars: 30,
|
||||
truncate: "end",
|
||||
label: player.bind('track-title').as(t => t)
|
||||
}),
|
||||
Widget.Label({
|
||||
hpack: "start",
|
||||
max_width_chars: 30,
|
||||
truncate: "end",
|
||||
label: player.bind("track_artists").transform(a => a.join(", ")),
|
||||
wrap: true,
|
||||
}),
|
||||
Widget.Label({
|
||||
hpack: "start",
|
||||
max_width_chars: 30,
|
||||
truncate: "end",
|
||||
label: player.bind('track-album').as(t => t)
|
||||
}),
|
||||
]
|
||||
})
|
||||
],
|
||||
|
||||
}),
|
||||
|
||||
Widget.Slider({
|
||||
class_name: "position",
|
||||
draw_value: false,
|
||||
on_change: ({ value }) => player.position = value * player.length,
|
||||
visible: player.bind("length").as(l => l > 0),
|
||||
setup: self => {
|
||||
function update() {
|
||||
const value = player.position / player.length
|
||||
self.value = value > 0 ? value : 0
|
||||
}
|
||||
self.hook(player, update)
|
||||
self.hook(player, update, "position")
|
||||
self.poll(1000, update)
|
||||
},
|
||||
}),
|
||||
|
||||
Widget.Box({
|
||||
vertical: false,
|
||||
hpack: "center",
|
||||
spacing: 20,
|
||||
children: [
|
||||
Widget.Button({
|
||||
child: Widget.Icon({ icon: 'media-skip-backward-symbolic'}),
|
||||
on_primary_click: () => player.previous()
|
||||
}),
|
||||
Widget.Button({
|
||||
child: Widget.Icon({ icon: player.bind("play_back_status").transform(s => {
|
||||
switch (s) {
|
||||
case "Playing": return 'media-playback-pause-symbolic'
|
||||
case "Paused":
|
||||
case "Stopped": return 'media-playback-start-symbolic'
|
||||
}
|
||||
}),
|
||||
}),
|
||||
on_primary_click: () => player.playPause(),
|
||||
}),
|
||||
Widget.Button({
|
||||
child: Widget.Icon({ icon: 'media-skip-forward-symbolic'}),
|
||||
on_primary_click: () => player.next()
|
||||
})
|
||||
]
|
||||
})
|
||||
],
|
||||
setup: self => {
|
||||
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
export function Players() {
|
||||
|
||||
const plrs = mpris.bind('players')
|
||||
.as(p => p.map((v) => PlayerGUI(v)))
|
||||
|
||||
return Widget.Box({
|
||||
vertical: true,
|
||||
children: plrs,
|
||||
})
|
||||
}
|
||||
22
home-manager/nix-on-droid/dotfiles/ags/notif.js
Executable file
@@ -0,0 +1,22 @@
|
||||
const notifications = await Service.import("notifications")
|
||||
|
||||
|
||||
|
||||
// we don't need dunst or any other notification daemon
|
||||
// because the Notifications module is a notification daemon itself
|
||||
export default function Notification() {
|
||||
const popups = notifications.bind("popups")
|
||||
return Widget.EventBox({
|
||||
class_name: "notificationbutton",
|
||||
visible: true,
|
||||
on_primary_click: () => {},
|
||||
child: Widget.Icon({
|
||||
icon: "preferences-system-notifications-symbolic",
|
||||
}),
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
// Widget.Label({
|
||||
// label: popups.as(p => p[0]?.summary || ""),
|
||||
// }),
|
||||
131
home-manager/nix-on-droid/dotfiles/ags/notification.js
Executable file
@@ -0,0 +1,131 @@
|
||||
const notifications = await Service.import("notifications")
|
||||
|
||||
/** @param {import('resource:///com/github/Aylur/ags/service/notifications.js').Notification} n */
|
||||
function NotificationIcon({ app_entry, app_icon, image }) {
|
||||
if (image) {
|
||||
return Widget.Box({
|
||||
css: `background-image: url("${image}");`
|
||||
+ "background-size: contain;"
|
||||
+ "background-repeat: no-repeat;"
|
||||
+ "background-position: center;",
|
||||
})
|
||||
}
|
||||
|
||||
let icon = "dialog-information-symbolic"
|
||||
if (Utils.lookUpIcon(app_icon))
|
||||
icon = app_icon
|
||||
|
||||
if (app_entry && Utils.lookUpIcon(app_entry))
|
||||
icon = app_entry
|
||||
|
||||
return Widget.Box({
|
||||
child: Widget.Icon(icon),
|
||||
})
|
||||
}
|
||||
|
||||
/** @param {import('resource:///com/github/Aylur/ags/service/notifications.js').Notification} n */
|
||||
function Notification(n) {
|
||||
const icon = Widget.Box({
|
||||
vpack: "start",
|
||||
class_name: "icon",
|
||||
child: NotificationIcon(n),
|
||||
})
|
||||
|
||||
const title = Widget.Label({
|
||||
class_name: "title",
|
||||
xalign: 0,
|
||||
justification: "left",
|
||||
hexpand: true,
|
||||
max_width_chars: 24,
|
||||
truncate: "end",
|
||||
wrap: true,
|
||||
label: n.summary,
|
||||
use_markup: true,
|
||||
})
|
||||
|
||||
const body = Widget.Label({
|
||||
class_name: "body",
|
||||
hexpand: true,
|
||||
use_markup: true,
|
||||
xalign: 0,
|
||||
justification: "left",
|
||||
label: n.body,
|
||||
wrap: true,
|
||||
})
|
||||
|
||||
const actions = Widget.Box({
|
||||
class_name: "actions",
|
||||
children: n.actions.map(({ id, label }) => Widget.Button({
|
||||
class_name: "action-button",
|
||||
on_clicked: () => {
|
||||
n.invoke(id)
|
||||
n.dismiss()
|
||||
},
|
||||
hexpand: true,
|
||||
child: Widget.Label(label),
|
||||
})),
|
||||
})
|
||||
|
||||
return Widget.EventBox(
|
||||
{
|
||||
attribute: { id: n.id },
|
||||
on_primary_click: n.dismiss,
|
||||
},
|
||||
Widget.Box(
|
||||
{
|
||||
class_name: `notification ${n.urgency}`,
|
||||
vertical: true,
|
||||
},
|
||||
Widget.Box([
|
||||
icon,
|
||||
Widget.Box(
|
||||
{ vertical: true },
|
||||
title,
|
||||
body,
|
||||
),
|
||||
]),
|
||||
actions,
|
||||
),
|
||||
)
|
||||
}
|
||||
|
||||
export function NotificationPopups(monitor = 0) {
|
||||
const list = Widget.Box({
|
||||
vertical: true,
|
||||
children: notifications.popups.map(Notification),
|
||||
})
|
||||
|
||||
function onNotified(_, /** @type {number} */ id) {
|
||||
const n = notifications.getNotification(id)
|
||||
if (n)
|
||||
list.children = [Notification(n), ...list.children]
|
||||
}
|
||||
|
||||
function onDismissed(_, /** @type {number} */ id) {
|
||||
list.children.find(n => n.attribute.id === id)?.destroy()
|
||||
}
|
||||
|
||||
list.hook(notifications, onNotified, "notified")
|
||||
.hook(notifications, onDismissed, "dismissed")
|
||||
|
||||
return Widget.Window({
|
||||
monitor,
|
||||
name: `notifications${monitor}`,
|
||||
class_name: "notification-popups",
|
||||
anchor: ["top", "right"],
|
||||
layer: "overlay",
|
||||
child: Widget.Box({
|
||||
css: "min-width: 2px; min-height: 2px;",
|
||||
class_name: "notifications",
|
||||
vertical: true,
|
||||
child: list,
|
||||
|
||||
/** this is a simple one liner that could be used instead of
|
||||
hooking into the 'notified' and 'dismissed' signals.
|
||||
but its not very optimized becuase it will recreate
|
||||
the whole list everytime a notification is added or dismissed */
|
||||
// children: notifications.bind('popups')
|
||||
// .as(popups => popups.map(Notification))
|
||||
}),
|
||||
})
|
||||
}
|
||||
44
home-manager/nix-on-droid/dotfiles/ags/power.js
Executable file
@@ -0,0 +1,44 @@
|
||||
|
||||
|
||||
|
||||
function Power() {
|
||||
|
||||
|
||||
return Widget.Box({
|
||||
vertical: false,
|
||||
spacing: 8,
|
||||
children: [
|
||||
Widget.EventBox({
|
||||
child: Widget.Icon({icon: 'system-reboot-symbolic'}),
|
||||
margin_right: 10,
|
||||
class_name: 'restart',
|
||||
tooltip_text: 'restart',
|
||||
on_primary_click: () => {App.Quit(); Utils.execAsync('reboot')},
|
||||
}),
|
||||
Widget.EventBox({
|
||||
child: Widget.Icon({icon: 'system-log-out-symbolic'}),
|
||||
margin_right: 10,
|
||||
class_name: 'logout',
|
||||
tooltip_text: 'log out',
|
||||
on_primary_click: () => {App.Quit(); Utils.execAsync('loginctl kill-session self')},
|
||||
}),
|
||||
Widget.EventBox({
|
||||
child: Widget.Icon({icon: 'system-lock-screen-symbolic'}),
|
||||
margin_right: 10,
|
||||
class_name: 'lockscreen',
|
||||
tooltip_text: 'lock screen',
|
||||
on_primary_click: () => {Utils.exec('swaylock')},
|
||||
}),
|
||||
Widget.EventBox({
|
||||
child: Widget.Icon({icon: 'system-shutdown-symbolic'}),
|
||||
margin_right: 10,
|
||||
class_name: 'poweroff',
|
||||
tooltip_text: 'shutdown',
|
||||
on_primary_click: () => {App.Quit(); Utils.execAsync('shutdown now')},
|
||||
})
|
||||
],
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export default Power
|
||||
125
home-manager/nix-on-droid/dotfiles/ags/settings.js
Executable file
@@ -0,0 +1,125 @@
|
||||
const audio = await Service.import("audio")
|
||||
const battery = await Service.import("battery")
|
||||
const mpris = await Service.import("mpris")
|
||||
|
||||
import Bluetooth from "./bluetooth.js"
|
||||
import WifiIndicator from "./wifi.js"
|
||||
import { Players } from "./media.js"
|
||||
|
||||
export function Volume() {
|
||||
const icons = {
|
||||
101: "high",
|
||||
67: "high",
|
||||
34: "medium",
|
||||
1: "low",
|
||||
0: "muted",
|
||||
}
|
||||
|
||||
function getIcon() {
|
||||
const icon = audio.speaker.is_muted ? 0 : [101, 67, 34, 1, 0].find(
|
||||
threshold => threshold <= audio.speaker.volume * 100)
|
||||
|
||||
return `audio-volume-${icons[icon]}-symbolic`
|
||||
}
|
||||
|
||||
|
||||
return Widget.EventBox({
|
||||
tooltip_text: '',
|
||||
setup: (self) => self.hook(audio.speaker, () => {
|
||||
self.tooltip_text = `Volume: ${(100 * audio.speaker.volume).toFixed(0)}%`
|
||||
}),
|
||||
child: Widget.Icon({
|
||||
class_name: "volume",
|
||||
icon: Utils.watch(getIcon(), audio.speaker, getIcon),
|
||||
})
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
// const slider = Widget.Slider({
|
||||
// hexpand: true,
|
||||
// draw_value: false,
|
||||
// inverted: true,
|
||||
// on_change: ({ value }) => audio.speaker.volume = value,
|
||||
// setup: (self) => self.hook(audio.speaker, () => {
|
||||
// self.value = audio.speaker.volume || 0
|
||||
// }),
|
||||
// })
|
||||
|
||||
|
||||
export function BatteryLabel() {
|
||||
const value = battery.bind("percent").as(p => p > 0 ? p / 100 : 0)
|
||||
const icon = battery.bind("percent").as(p =>
|
||||
`battery-${p > 90 ? "full" : p > 70 ? "good" : p > 50 ? "medium" : p > 30 ? "low" : p > 10 ? "caution" : "empty"}-symbolic`)
|
||||
|
||||
return Widget.Box({
|
||||
class_name: "battery",
|
||||
visible: battery.bind("available"),
|
||||
child: Widget.EventBox({
|
||||
child: Widget.Icon({ icon }),
|
||||
tooltip_text: value.as(p => `Battery: ${(p * 100).toFixed(0)}%`)
|
||||
}),
|
||||
})
|
||||
}
|
||||
|
||||
function Panel() {
|
||||
return Widget.Box({
|
||||
height_request: 200,
|
||||
css: 'background: black;',
|
||||
})
|
||||
}
|
||||
|
||||
export function SettingsWindow(monitor = 0) {
|
||||
return Widget.Window({
|
||||
monitor,
|
||||
name: `Settings-${monitor}`,
|
||||
anchor: ["top", "bottom", "right"],
|
||||
margins: [50, 0, 10, 0],
|
||||
width_request: 400,
|
||||
exclusivity: "ignore",
|
||||
layer: "top",
|
||||
class_name: "SettingsWindow",
|
||||
child: Widget.Box({
|
||||
class_name: "settings_window",
|
||||
child: Widget.Scrollable({
|
||||
vscroll: "always",
|
||||
hscroll: "never",
|
||||
hexpand: true,
|
||||
vexpand: true,
|
||||
margin: 20,
|
||||
child: Widget.Box({
|
||||
vertical: true,
|
||||
children: [
|
||||
Panel(),
|
||||
Players()
|
||||
]
|
||||
}),
|
||||
}),
|
||||
}),
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export default function Settings() {
|
||||
|
||||
|
||||
return Widget.Button({
|
||||
tooltip_text: 'Settings',
|
||||
attribute: false,
|
||||
margin_right: 8,
|
||||
child: Widget.Box({
|
||||
spacing: 8,
|
||||
children: [
|
||||
Bluetooth(),
|
||||
WifiIndicator(),
|
||||
BatteryLabel(),
|
||||
Volume(),
|
||||
],
|
||||
}),
|
||||
on_clicked: (self) => {
|
||||
self.attribute = !self.attribute
|
||||
|
||||
App.toggleWindow(App.windows[1].name)
|
||||
},
|
||||
})
|
||||
}
|
||||
174
home-manager/nix-on-droid/dotfiles/ags/style.css
Executable file
@@ -0,0 +1,174 @@
|
||||
|
||||
|
||||
|
||||
|
||||
window.bar {
|
||||
background-color: rgb(36, 40, 59);
|
||||
color: rgb(200, 200, 200);
|
||||
|
||||
}
|
||||
|
||||
window.win {
|
||||
background-color: transparent;
|
||||
color: rgb(200, 200, 200);
|
||||
}
|
||||
|
||||
.booox {
|
||||
color: white;
|
||||
background-color: white;
|
||||
|
||||
}
|
||||
|
||||
.playerbox {
|
||||
background-color: rgb(73, 81, 121);
|
||||
color:rgb(73, 81, 121);
|
||||
border: 3px solid black;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
.launcher {
|
||||
color: aqua;
|
||||
background: none;
|
||||
border: none;
|
||||
|
||||
}
|
||||
|
||||
box {
|
||||
color: aqua;
|
||||
}
|
||||
|
||||
|
||||
Window.SettingsWindow {
|
||||
background-color: black;
|
||||
color: black;
|
||||
}
|
||||
.settings_window {
|
||||
background-color: rgb(36, 40, 59);
|
||||
color: teal;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
.focused {
|
||||
color: aqua;
|
||||
}
|
||||
|
||||
.other {
|
||||
color: teal;
|
||||
}
|
||||
|
||||
.media {
|
||||
color: aqua;
|
||||
}
|
||||
|
||||
.media:active {
|
||||
background-color: aqua;
|
||||
}
|
||||
|
||||
button {
|
||||
min-width: 0;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0px;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
color: aqua;
|
||||
}
|
||||
|
||||
button:active {
|
||||
background-color: aqua;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
border-bottom: 3px solid teal;
|
||||
}
|
||||
|
||||
label {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.workspaces button.focused {
|
||||
border-bottom: 3px solid aqua;
|
||||
}
|
||||
|
||||
.client-title {
|
||||
color: rgb(200, 200, 200);
|
||||
}
|
||||
|
||||
.clock {
|
||||
color: rgb(200, 200, 200);
|
||||
}
|
||||
|
||||
.notification {
|
||||
color: yellow;
|
||||
}
|
||||
|
||||
levelbar block,
|
||||
highlight {
|
||||
min-height: 4px;
|
||||
}
|
||||
|
||||
/************************************/
|
||||
|
||||
window.notification-popups box.notifications {
|
||||
padding: .5em;
|
||||
}
|
||||
|
||||
.icon {
|
||||
min-width: 68px;
|
||||
min-height: 68px;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
.icon image {
|
||||
font-size: 58px;
|
||||
/* to center the icon */
|
||||
margin: 5px;
|
||||
color: yellow;
|
||||
}
|
||||
|
||||
.icon box {
|
||||
min-width: 68px;
|
||||
min-height: 68px;
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
.notificationbutton {
|
||||
color: teal;
|
||||
}
|
||||
|
||||
.notification {
|
||||
min-width: 350px;
|
||||
border-radius: 11px;
|
||||
padding: 1em;
|
||||
margin: .5em;
|
||||
border: 1px solid blue;
|
||||
background-color: rgb(36, 40, 59);
|
||||
}
|
||||
|
||||
.notification.critical {
|
||||
border: 1px solid lightcoral;
|
||||
}
|
||||
|
||||
.title {
|
||||
color: black;
|
||||
font-size: 1.4em;
|
||||
}
|
||||
|
||||
.body {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.actions .action-button {
|
||||
margin: 0 .4em;
|
||||
margin-top: .8em;
|
||||
}
|
||||
|
||||
.actions .action-button:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.actions .action-button:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
0
home-manager/nix-on-droid/dotfiles/ags/systemtray.js
Executable file
30
home-manager/nix-on-droid/dotfiles/ags/wifi.js
Executable file
@@ -0,0 +1,30 @@
|
||||
const network = await Service.import('network')
|
||||
|
||||
export default function WifiIndicator() {
|
||||
return Widget.Box({
|
||||
child: Widget.EventBox({
|
||||
child: Widget.Icon({
|
||||
icon: 'network-wireless-disconnected-symbolic',
|
||||
}),
|
||||
|
||||
setup: self => self.hook(network.wifi, () => {
|
||||
self.child.icon = network.wifi.icon_name == 'network-wireless-disabled-symbolic' ? 'network-wireless-disconnected-symbolic' : network.wifi.icon_name
|
||||
self.tooltip_text = network.wifi.ssid ? network.wifi.ssid : network.wifi.internet
|
||||
}),
|
||||
|
||||
tooltip_text: 'disconnected',
|
||||
}),
|
||||
})
|
||||
}
|
||||
|
||||
// const WiredIndicator = () => Widget.Icon({
|
||||
// icon: network.wired.bind('icon_name'),
|
||||
// })
|
||||
|
||||
// const NetworkIndicator = () => Widget.Stack({
|
||||
// children: {
|
||||
// wifi: WifiIndicator(),
|
||||
// wired: WiredIndicator(),
|
||||
// },
|
||||
// shown: network.bind('primary').as(p => p || 'wifi'),
|
||||
// })
|
||||
37
home-manager/nix-on-droid/dotfiles/ags/workspaces.js
Executable file
@@ -0,0 +1,37 @@
|
||||
const hyprland = await Service.import("hyprland")
|
||||
|
||||
|
||||
function ClientTitle() {
|
||||
return Widget.Label({
|
||||
class_name: "client-title",
|
||||
max_width_chars: 30,
|
||||
truncate: "end",
|
||||
label: hyprland.active.client.bind("title"),
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
function Workspaces() {
|
||||
const activeId = hyprland.active.workspace.bind("id")
|
||||
const workspaces = hyprland.bind("workspaces")
|
||||
.as(ws => ws.map(({ id }) => id > 0 ? Widget.Button({
|
||||
on_clicked: () => hyprland.messageAsync(`dispatch workspace ${id}`),
|
||||
child: Widget.Label(`${id}`),
|
||||
class_name: activeId.as(i => `${i === id ? "focused" : "other"}`),
|
||||
margin_left: 10,
|
||||
}) : null
|
||||
).sort((a, b) => { return a && b ? Number(a.child.label) - Number(b.child.label) : a ? -1 : 1 }))
|
||||
|
||||
return Widget.CenterBox({
|
||||
|
||||
spacing: 8,
|
||||
start_widget: Widget.Box({
|
||||
class_name: "workspaces",
|
||||
spacing: 0,
|
||||
children: workspaces
|
||||
}),
|
||||
end_widget: ClientTitle(),
|
||||
})
|
||||
}
|
||||
|
||||
export default Workspaces
|
||||
12
home-manager/nix-on-droid/dotfiles/default.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ config, lib, ... }: {
|
||||
|
||||
home.file = {
|
||||
".config/ags" = { source = ./ags; recursive = true; };
|
||||
".config/hypr" = { source = ./hypr; recursive = true; };
|
||||
".config/swaylock" = { source = ./swaylock; recursive = true; };
|
||||
".config/wal/templates" = { source = ./wal/templates; recursive = true; };
|
||||
".config/wayvnc" = { source = ./wayvnc; recursive = true; };
|
||||
"Pictures/Wallpaper" = { source = ./Wallpaper; recursive = true; };
|
||||
};
|
||||
|
||||
}
|
||||
281
home-manager/nix-on-droid/dotfiles/hypr/main.conf
Normal file
@@ -0,0 +1,281 @@
|
||||
|
||||
#------------------------------------------------#
|
||||
# _ _ _ _ #
|
||||
#| | | | | | | | #
|
||||
#| |___| |_ _ ____ _ _| | __ _.-.___ ___| | #
|
||||
#| ___ | | | | _ \| |/ | |/ _` | _ \/ _ | #
|
||||
#| | | | |_| | |_) | /| | (_| | | | | (_| | #
|
||||
#|_| |_|\__, | __/|__| |_|\__,_|_| |_|\___/_| #
|
||||
# |___/|_| #
|
||||
# #
|
||||
#------------------------------------------------#
|
||||
|
||||
exec-once=onSystemStart
|
||||
|
||||
# Some default env vars.
|
||||
env = XCURSOR_SIZE,16
|
||||
|
||||
source = ./otf.conf
|
||||
source = ~/.cache/wal/colors-hypr.conf
|
||||
|
||||
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
||||
input {
|
||||
kb_layout = us
|
||||
kb_variant =
|
||||
kb_model =
|
||||
kb_options =
|
||||
kb_rules =
|
||||
|
||||
follow_mouse = 1
|
||||
|
||||
touchpad {
|
||||
natural_scroll = yes
|
||||
}
|
||||
|
||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||
}
|
||||
|
||||
cursor {
|
||||
no_hardware_cursors = true
|
||||
}
|
||||
|
||||
general {
|
||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||
|
||||
gaps_in = 5
|
||||
gaps_out = 4
|
||||
border_size = 2
|
||||
col.active_border = $color1 $color5 100deg
|
||||
col.inactive_border = $color0
|
||||
|
||||
layout = dwindle
|
||||
}
|
||||
decoration { # See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||
|
||||
rounding = 2
|
||||
|
||||
blur {
|
||||
enabled = false
|
||||
}
|
||||
|
||||
|
||||
#drop_shadow = yes
|
||||
#shadow_range = 4
|
||||
#shadow_render_power = 3
|
||||
#col.shadow = rgba(1a1a1aee)
|
||||
}
|
||||
|
||||
animations {
|
||||
enabled = yes
|
||||
|
||||
# Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
|
||||
|
||||
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
|
||||
|
||||
animation = windows, 1, 7, myBezier
|
||||
animation = windowsOut, 1, 7, default, popin 80%
|
||||
animation = border, 1, 10, default
|
||||
animation = borderangle, 1, 8, default
|
||||
animation = fade, 1, 7, default
|
||||
animation = workspaces, 1, 6, default
|
||||
}
|
||||
|
||||
|
||||
|
||||
dwindle {
|
||||
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
|
||||
pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
|
||||
preserve_split = yes # you probably want this
|
||||
}
|
||||
|
||||
master {
|
||||
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
|
||||
new_status = "master"
|
||||
}
|
||||
|
||||
gestures {
|
||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||
workspace_swipe = off
|
||||
}
|
||||
|
||||
misc {
|
||||
disable_hyprland_logo = false
|
||||
disable_splash_rendering = true
|
||||
force_default_wallpaper = 2
|
||||
}
|
||||
|
||||
# Binds
|
||||
$mainMod = ALT
|
||||
|
||||
bind = $mainMod, E, exec, colorPrefix kitty
|
||||
|
||||
bind = $mainMod, B, exec, firefox
|
||||
|
||||
bind = $mainMod SHIFT, B, exec, firefox --private-window
|
||||
|
||||
bind = $mainMod, Q, killactive,
|
||||
|
||||
bind = $mainMod, R, exec, colorPrefix kitty -e _systemRebuild
|
||||
|
||||
bind = $mainMod SHIFT, R, exec, colorPrefix kitty -e _homeRebuild
|
||||
|
||||
bind = $mainMod, C, exec, colorPrefix kitty -e bash -c "cd ~/Projects/System; nvim ~/Projects/System/flake.nix"
|
||||
|
||||
bind = $mainMod, F, exec, thunar
|
||||
bind = $mainMod SHIFT, F, fullscreen
|
||||
|
||||
bind = $mainMod, semicolon, exec, colorPrefix kitty -e nvim ~
|
||||
|
||||
bind = $mainMod, Insert, exec, libreoffice &
|
||||
|
||||
bind = $mainMod, H, exec, bluetoothctl connect 88:D0:39:F9:83:CE
|
||||
|
||||
bind = $mainMod, V, togglefloating,
|
||||
|
||||
bind = $mainMod SHIFT, V, exec, vlc &
|
||||
|
||||
bind = , Menu, exec, rofi -show drun
|
||||
|
||||
bind = $mainMod, Menu, exec, killall .ags-wrapped; ags &
|
||||
|
||||
bind = $mainMod, P, pseudo, # dwindle
|
||||
|
||||
bind = $mainMod, Z, togglesplit, # dwindle
|
||||
|
||||
bind = $mainMod, M, exec, spotify
|
||||
|
||||
bind = $mainMod SHIFT, M, exec, firefox --new-window soundcloud.com/you/library
|
||||
|
||||
bind = $mainMod CTRL, M, exec, colorPrefix kitty -e ncmpcpp -s browser
|
||||
|
||||
bind = $mainMod, XF86AudioPlay, exec, mpc load casual
|
||||
|
||||
bind = , XF86AudioPlay, exec, playerctl play-pause
|
||||
|
||||
bind = , XF86AudioPause, exec, playerctl pause
|
||||
bind = $mainMod, F9, exec, playerctl pause
|
||||
|
||||
bind = , XF86AudioNext, exec, playerctl next
|
||||
|
||||
bind = , XF86AudioPrev, exec, playerctl previous
|
||||
|
||||
bind = , XF86Launch2, exec, steam &
|
||||
bind = $mainMod, XF86Launch2, exec, prismlauncher
|
||||
|
||||
bind = CTRL SHIFT, XF86Launch2, exec, if [[ $(hyprctl monitors | grep 0x0 | sed -n -e "s/\t*1920x1080@//" -e "s/.[1234567890]* at 0x0//p") == 300 ]]; then hyprctl keyword monitor eDP-1,1920x1080@60,0x0,1; else hyprctl keyword monitor eDP-1,1920x1080@300,0x0,1; fi
|
||||
|
||||
bind = , XF86Calculator, exec, geogebra
|
||||
|
||||
bind = $mainMod SHIFT, Print, exec, firefox --new-window localhost:631
|
||||
bind = , Print, exec, grim -g "$(slurp)"
|
||||
|
||||
bind = $mainMod, Return, exec, vesktop --enable-features=UseOzonePlatform --ozone-platform=wayland &
|
||||
|
||||
bind = $mainMod CTRL, Return, exec, firefox --new-window https://discord.com/app
|
||||
|
||||
# Move focus with mainMod + arrow keys
|
||||
bind = $mainMod, A, movefocus, l
|
||||
bind = $mainMod, D, movefocus, r
|
||||
bind = $mainMod, W, movefocus, u
|
||||
bind = $mainMod, S, movefocus, d
|
||||
# Switch workspaces with mainMod + [0-9]
|
||||
bind = $mainMod, 1, workspace, 1
|
||||
bind = $mainMod, 2, workspace, 2
|
||||
bind = $mainMod, 3, workspace, 3
|
||||
bind = $mainMod, 4, workspace, 4
|
||||
bind = $mainMod, 5, workspace, 5
|
||||
bind = $mainMod, 6, workspace, 6
|
||||
bind = $mainMod, 7, workspace, 7
|
||||
bind = $mainMod, 8, workspace, 8
|
||||
bind = $mainMod, 9, workspace, 9
|
||||
bind = $mainMod, 0, workspace, 10
|
||||
|
||||
bind = $mainMod, Home, workspace, 11
|
||||
|
||||
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
||||
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
||||
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
||||
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
||||
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
||||
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
||||
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
||||
bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
||||
bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
||||
bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
||||
bind = $mainMod SHIFT, 0, movetoworkspace, 10
|
||||
|
||||
bind = $mainMod SHIFT, Home, movetoworkspace, 11
|
||||
|
||||
# Scroll through existing workspaces with mainMod + scroll
|
||||
bind = $mainMod, right, workspace, e+1
|
||||
bind = $mainMod, left, workspace, e-1
|
||||
|
||||
#switch network connections
|
||||
bind = CTRL SHIFT, Escape, exec, nmcli device down wlo1
|
||||
bind = CTRL SHIFT, 0, exec, nmcli device down wlo1; nmcli connection up Hotspot
|
||||
bind = CTRL SHIFT, 1, exec, nmcli device wifi connect EagleNet password ~?C##@ZiH
|
||||
bind = CTRL SHIFT, 2, exec, nmcli device down wlo1; nmcli device wifi connect CXNK00813829 password a8d859c8cfb420ab
|
||||
bind = CTRL SHIFT, 3, exec, nmcli device down wlo1; nmcli device wifi connect ATT9MhT2ql password 325qxr89u?3t
|
||||
|
||||
#brightness keys
|
||||
bind = , XF86MonBrightnessUp, exec, brightnessctl set +10%
|
||||
bind = , XF86MonBrightnessDown, exec, brightnessctl set 10%-
|
||||
|
||||
#volume keys
|
||||
binde = , XF86AudioRaiseVolume, exec, amixer -D default sset Master 10%+
|
||||
binde = , XF86AudioLowerVolume, exec, amixer -D default sset Master 10%-
|
||||
bind = , XF86AudioMute, exec, amixer -D default sset Master toggle
|
||||
|
||||
|
||||
#screen lock key
|
||||
bind = $mainMod, F12, exec, swaylock
|
||||
|
||||
#logout shortcut
|
||||
bind = CTRL ALT, Delete, exec, loginctl kill-session self
|
||||
|
||||
|
||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||
bind = $mainMod SHIFT, W, movewindow, u
|
||||
bind = $mainMod SHIFT, S, movewindow, d
|
||||
bind = $mainMod SHIFT, A, movewindow, l
|
||||
bind = $mainMod SHIFT, D, movewindow, r
|
||||
bindm = $mainMod, mouse:272, movewindow
|
||||
bindm = $mainMod SHIFT, mouse:272, resizewindow
|
||||
|
||||
$scratchpadsize = size 60% 80%
|
||||
$scratchpad = class:^(scratchpad)$
|
||||
|
||||
windowrulev2 = float, $scratchpad
|
||||
windowrulev2 = $scratchpadsize, $scratchpad
|
||||
windowrulev2 = workspace special silent, $scratchpad
|
||||
|
||||
$kitty = class:^(scratchpad-kitty)$
|
||||
|
||||
windowrulev2 = float, $kitty
|
||||
windowrulev2 = $scratchpadsize, $kitty
|
||||
windowrulev2 = workspace special silent, $kitty
|
||||
$nvim = class:^(scratchpad-nvim)$
|
||||
|
||||
windowrulev2 = float, $nvim
|
||||
windowrulev2 = $scratchpadsize, $nvim
|
||||
windowrulev2 = workspace special silent, $nvim
|
||||
|
||||
bind = $mainMod SHIFT, N, exec, colorPrefix pypr toggle nvim
|
||||
bind = $mainMod SHIFT, E, exec, colorPrefix pypr toggle free
|
||||
|
||||
|
||||
bind = CTRL SHIFT, Home, exec, ssh -i ~/.ssh/key nathan@69.150.99.129 -fL 5900:localhost:5900 sleep 10; vncviewer localhost:5900 -fullscreen
|
||||
bind = CTRL SHIFT, End, exec, ssh -i ~/.ssh/key nathan@173.242.244.184 -fL 5900:localhost:5900 sleep 10; vncviewer localhost:5900 -fullscreen
|
||||
bind = CTRL SHIFT, Home, submap, clean
|
||||
bind = CTRL SHIFT, End, submap, clean
|
||||
|
||||
|
||||
bind = $mainMod CTRL, Home, submap, clean
|
||||
|
||||
submap = clean
|
||||
|
||||
bind = $mainMod CTRL, Home, submap, reset
|
||||
|
||||
submap = reset
|
||||
|
||||
|
||||
1
home-manager/nix-on-droid/dotfiles/hypr/otf.conf
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
22
home-manager/nix-on-droid/dotfiles/hypr/pyprland.toml
Normal file
@@ -0,0 +1,22 @@
|
||||
[pyprland]
|
||||
plugins = [
|
||||
"scratchpads"
|
||||
]
|
||||
|
||||
[scratchpads.nvim]
|
||||
animation = "fromTop"
|
||||
command = "kitty --class scratchpad-nvim -e nvim ~"
|
||||
lazy = false
|
||||
class = "scratchpad-nvim"
|
||||
margin = 100
|
||||
multi = true
|
||||
excludes = "*"
|
||||
|
||||
[scratchpads.free]
|
||||
animation = "fromBottom"
|
||||
command = "kitty --class scratchpad"
|
||||
class = "scratchpad"
|
||||
lazy = false
|
||||
margin = 100
|
||||
multi = true
|
||||
excludes = "*"
|
||||
16
home-manager/nix-on-droid/dotfiles/swaylock/config
Executable file
@@ -0,0 +1,16 @@
|
||||
indicator
|
||||
ignore-empty-password
|
||||
indicator-thickness=10
|
||||
indicator-radius=100
|
||||
image=~/.cache/bg
|
||||
clock
|
||||
ring-color=33ddff55
|
||||
key-hl-color=dd4444
|
||||
line-color=00000000
|
||||
inside-color=00000088
|
||||
text-color=00a6f0
|
||||
text-clear-color=daa520
|
||||
ring-clear-color=002251
|
||||
separator-color=00000000
|
||||
grace=2
|
||||
fade-in=0.5
|
||||
279
home-manager/nix-on-droid/dotfiles/wal/templates/cava_config
Normal file
@@ -0,0 +1,279 @@
|
||||
## Configuration file for CAVA.
|
||||
# Remove the ; to change parameters.
|
||||
|
||||
|
||||
[general]
|
||||
|
||||
# Smoothing mode. Can be 'normal', 'scientific' or 'waves'. DEPRECATED as of 0.6.0
|
||||
; mode = normal
|
||||
|
||||
# Accepts only non-negative values.
|
||||
; framerate = 60
|
||||
|
||||
# 'autosens' will attempt to decrease sensitivity if the bars peak. 1 = on, 0 = off
|
||||
# new as of 0.6.0 autosens of low values (dynamic range)
|
||||
# 'overshoot' allows bars to overshoot (in % of terminal height) without initiating autosens. DEPRECATED as of 0.6.0
|
||||
; autosens = 1
|
||||
; overshoot = 20
|
||||
|
||||
# Manual sensitivity in %. If autosens is enabled, this will only be the initial value.
|
||||
# 200 means double height. Accepts only non-negative values.
|
||||
; sensitivity = 100
|
||||
|
||||
# The number of bars (0-512). 0 sets it to auto (fill up console).
|
||||
# Bars' width and space between bars in number of characters.
|
||||
; bars = 0
|
||||
; bar_width = 2
|
||||
; bar_spacing = 1
|
||||
# bar_height is only used for output in "noritake" format
|
||||
; bar_height = 32
|
||||
|
||||
# For SDL width and space between bars is in pixels, defaults are:
|
||||
; bar_width = 20
|
||||
; bar_spacing = 5
|
||||
|
||||
# sdl_glsl have these default values, they are only used to calulate max number of bars.
|
||||
; bar_width = 1
|
||||
; bar_spacing = 0
|
||||
|
||||
|
||||
# Lower and higher cutoff frequencies for lowest and highest bars
|
||||
# the bandwidth of the visualizer.
|
||||
# Note: there is a minimum total bandwidth of 43Mhz x number of bars.
|
||||
# Cava will automatically increase the higher cutoff if a too low band is specified.
|
||||
; lower_cutoff_freq = 50
|
||||
; higher_cutoff_freq = 10000
|
||||
|
||||
|
||||
# Seconds with no input before cava goes to sleep mode. Cava will not perform FFT or drawing and
|
||||
# only check for input once per second. Cava will wake up once input is detected. 0 = disable.
|
||||
; sleep_timer = 0
|
||||
|
||||
|
||||
[input]
|
||||
|
||||
# Audio capturing method. Possible methods are: 'fifo', 'portaudio', 'pipewire', 'alsa', 'pulse', 'sndio', 'oss', 'jack' or 'shmem'
|
||||
# Defaults to 'oss', 'pipewire', 'sndio', 'jack', 'pulse', 'alsa', 'portaudio' or 'fifo', in that order, dependent on what support cava was built with.
|
||||
# On Mac it defaults to 'portaudio' or 'fifo'
|
||||
# On windows this is automatic and no input settings are needed.
|
||||
#
|
||||
# All input methods uses the same config variable 'source'
|
||||
# to define where it should get the audio.
|
||||
#
|
||||
# For pulseaudio and pipewire 'source' will be the source. Default: 'auto', which uses the monitor source of the default sink
|
||||
# (all pulseaudio sinks(outputs) have 'monitor' sources(inputs) associated with them).
|
||||
#
|
||||
# For pipewire 'source' will be the object name or object.serial of the device to capture from.
|
||||
# Both input and output devices are supported.
|
||||
#
|
||||
# For alsa 'source' will be the capture device.
|
||||
# For fifo 'source' will be the path to fifo-file.
|
||||
# For shmem 'source' will be /squeezelite-AA:BB:CC:DD:EE:FF where 'AA:BB:CC:DD:EE:FF' will be squeezelite's MAC address
|
||||
#
|
||||
# For sndio 'source' will be a raw recording audio descriptor or a monitoring sub-device, e.g. 'rsnd/2' or 'snd/1'. Default: 'default'.
|
||||
# README.md contains further information on how to setup CAVA for sndio.
|
||||
#
|
||||
# For oss 'source' will be the path to a audio device, e.g. '/dev/dsp2'. Default: '/dev/dsp', i.e. the default audio device.
|
||||
# README.md contains further information on how to setup CAVA for OSS on FreeBSD.
|
||||
#
|
||||
# For jack 'source' will be the name of the JACK server to connect to, e.g. 'foobar'. Default: 'default'.
|
||||
# README.md contains further information on how to setup CAVA for JACK.
|
||||
#
|
||||
; method = pulse
|
||||
; source = auto
|
||||
|
||||
; method = pipewire
|
||||
; source = auto
|
||||
|
||||
; method = alsa
|
||||
; source = hw:Loopback,1
|
||||
|
||||
; method = fifo
|
||||
; source = /tmp/mpd.fifo
|
||||
|
||||
; method = shmem
|
||||
; source = /squeezelite-AA:BB:CC:DD:EE:FF
|
||||
|
||||
; method = portaudio
|
||||
; source = auto
|
||||
|
||||
; method = sndio
|
||||
; source = default
|
||||
|
||||
; method = oss
|
||||
; source = /dev/dsp
|
||||
|
||||
; method = jack
|
||||
; source = default
|
||||
|
||||
# The options 'sample_rate', 'sample_bits', 'channels' and 'autoconnect' can be configured for some input methods:
|
||||
# sample_rate: fifo, pipewire, sndio, oss
|
||||
# sample_bits: fifo, pipewire, sndio, oss
|
||||
# channels: sndio, oss, jack
|
||||
# autoconnect: jack
|
||||
# Other methods ignore these settings.
|
||||
#
|
||||
# For 'sndio' and 'oss' they are only preferred values, i.e. if the values are not supported
|
||||
# by the chosen audio device, the device will use other supported values instead.
|
||||
# Example: 48000, 32 and 2, but the device only supports 44100, 16 and 1, then it
|
||||
# will use 44100, 16 and 1.
|
||||
#
|
||||
; sample_rate = 44100
|
||||
; sample_bits = 16
|
||||
; channels = 2
|
||||
; autoconnect = 2
|
||||
|
||||
|
||||
[output]
|
||||
|
||||
# Output method. Can be 'ncurses', 'noncurses', 'raw', 'noritake', 'sdl'
|
||||
# or 'sdl_glsl'.
|
||||
# 'noncurses' (default) uses a buffer and cursor movements to only print
|
||||
# changes from frame to frame in the terminal. Uses less resources and is less
|
||||
# prone to tearing (vsync issues) than 'ncurses'.
|
||||
#
|
||||
# 'raw' is an 8 or 16 bit (configurable via the 'bit_format' option) data
|
||||
# stream of the bar heights that can be used to send to other applications.
|
||||
# 'raw' defaults to 200 bars, which can be adjusted in the 'bars' option above.
|
||||
#
|
||||
# 'noritake' outputs a bitmap in the format expected by a Noritake VFD display
|
||||
# in graphic mode. It only support the 3000 series graphical VFDs for now.
|
||||
#
|
||||
# 'sdl' uses the Simple DirectMedia Layer to render in a graphical context.
|
||||
# 'sdl_glsl' uses SDL to create an OpenGL context. Write your own shaders or
|
||||
# use one of the predefined ones.
|
||||
; method = noncurses
|
||||
|
||||
# Orientation of the visualization. Can be 'bottom', 'top', 'left' or 'right'.
|
||||
# Default is 'bottom'. Other orientations are only supported on sdl and ncruses
|
||||
# output. Note: many fonts have weird glyphs for 'top' and 'right' characters,
|
||||
# which can make ncurses not look right.
|
||||
; orientation = bottom
|
||||
|
||||
# Visual channels. Can be 'stereo' or 'mono'.
|
||||
# 'stereo' mirrors both channels with low frequencies in center.
|
||||
# 'mono' outputs left to right lowest to highest frequencies.
|
||||
# 'mono_option' set mono to either take input from 'left', 'right' or 'average'.
|
||||
# set 'reverse' to 1 to display frequencies the other way around.
|
||||
; channels = stereo
|
||||
; mono_option = average
|
||||
; reverse = 0
|
||||
|
||||
# Raw output target. A fifo will be created if target does not exist.
|
||||
; raw_target = /dev/stdout
|
||||
|
||||
# Raw data format. Can be 'binary' or 'ascii'.
|
||||
; data_format = binary
|
||||
|
||||
# Binary bit format, can be '8bit' (0-255) or '16bit' (0-65530).
|
||||
; bit_format = 16bit
|
||||
|
||||
# Ascii max value. In 'ascii' mode range will run from 0 to value specified here
|
||||
; ascii_max_range = 1000
|
||||
|
||||
# Ascii delimiters. In ascii format each bar and frame is separated by a delimiters.
|
||||
# Use decimal value in ascii table (i.e. 59 = ';' and 10 = '\n' (line feed)).
|
||||
; bar_delimiter = 59
|
||||
; frame_delimiter = 10
|
||||
|
||||
# sdl window size and position. -1,-1 is centered.
|
||||
; sdl_width = 1000
|
||||
; sdl_height = 500
|
||||
; sdl_x = -1
|
||||
; sdl_y= -1
|
||||
; sdl_full_screen = 0
|
||||
|
||||
# set label on bars on the x-axis. Can be 'frequency' or 'none'. Default: 'none'
|
||||
# 'frequency' displays the lower cut off frequency of the bar above.
|
||||
# Only supported on ncurses and noncurses output.
|
||||
; xaxis = none
|
||||
|
||||
# enable alacritty synchronized updates. 1 = on, 0 = off
|
||||
# removes flickering in alacritty terminal emulator.
|
||||
# defaults to off since the behaviour in other terminal emulators is unknown
|
||||
; alacritty_sync = 0
|
||||
|
||||
# Shaders for sdl_glsl, located in $HOME/.config/cava/shaders
|
||||
; vertex_shader = pass_through.vert
|
||||
; fragment_shader = bar_spectrum.frag
|
||||
|
||||
; for glsl output mode, keep rendering even if no audio
|
||||
; continuous_rendering = 0
|
||||
|
||||
# disable console blank (screen saver) in tty
|
||||
# (Not supported on FreeBSD)
|
||||
; disable_blanking = 0
|
||||
|
||||
# show a flat bar at the bottom of the screen when idle, 1 = on, 0 = off
|
||||
; show_idle_bar_heads = 1
|
||||
|
||||
# show waveform instead of frequency spectrum, 1 = on, 0 = off
|
||||
; waveform = 0
|
||||
|
||||
[color]
|
||||
|
||||
# Colors can be one of seven predefined: black, blue, cyan, green, magenta, red, white, yellow.
|
||||
# Or defined by hex code '#xxxxxx' (hex code must be within ''). User defined colors requires
|
||||
# a terminal that can change color definitions such as Gnome-terminal or rxvt.
|
||||
# default is to keep current terminal color
|
||||
; background = default
|
||||
; foreground = default
|
||||
|
||||
# SDL and sdl_glsl only support hex code colors, these are the default:
|
||||
; background = '#111111'
|
||||
; foreground = '#33ffff'
|
||||
|
||||
|
||||
# Gradient mode, only hex defined colors are supported,
|
||||
# background must also be defined in hex or remain commented out. 1 = on, 0 = off.
|
||||
# You can define as many as 8 different colors. They range from bottom to top of screen
|
||||
gradient = 1
|
||||
gradient_count = 8
|
||||
gradient_color_1 = '{color1}'
|
||||
gradient_color_2 = '{color2}'
|
||||
gradient_color_3 = '{color3}'
|
||||
gradient_color_4 = '{color4}'
|
||||
gradient_color_5 = '{color5}'
|
||||
gradient_color_6 = '{color6}'
|
||||
gradient_color_7 = '{color7}'
|
||||
gradient_color_8 = '{color8}'
|
||||
|
||||
|
||||
|
||||
[smoothing]
|
||||
|
||||
# Percentage value for integral smoothing. Takes values from 0 - 100.
|
||||
# Higher values means smoother, but less precise. 0 to disable.
|
||||
# DEPRECATED as of 0.8.0, use noise_reduction instead
|
||||
; integral = 77
|
||||
|
||||
# Disables or enables the so-called "Monstercat smoothing" with or without "waves". Set to 0 to disable.
|
||||
; monstercat = 0
|
||||
; waves = 0
|
||||
|
||||
# Set gravity percentage for "drop off". Higher values means bars will drop faster.
|
||||
# Accepts only non-negative values. 50 means half gravity, 200 means double. Set to 0 to disable "drop off".
|
||||
# DEPRECATED as of 0.8.0, use noise_reduction instead
|
||||
; gravity = 100
|
||||
|
||||
|
||||
# In bar height, bars that would have been lower that this will not be drawn.
|
||||
# DEPRECATED as of 0.8.0
|
||||
; ignore = 0
|
||||
|
||||
# Noise reduction, int 0 - 100. default 77
|
||||
# the raw visualization is very noisy, this factor adjusts the integral and gravity filters to keep the signal smooth
|
||||
# 100 will be very slow and smooth, 0 will be fast but noisy.
|
||||
; noise_reduction = 77
|
||||
|
||||
|
||||
[eq]
|
||||
|
||||
# This one is tricky. You can have as much keys as you want.
|
||||
# Remember to uncomment more than one key! More keys = more precision.
|
||||
# Look at readme.md on github for further explanations and examples.
|
||||
; 1 = 1 # bass
|
||||
; 2 = 1
|
||||
; 3 = 1 # midtone
|
||||
; 4 = 1
|
||||
; 5 = 1 # treble
|
||||
161
home-manager/nix-on-droid/dotfiles/wal/templates/colors-ags.css
Executable file
@@ -0,0 +1,161 @@
|
||||
|
||||
|
||||
|
||||
|
||||
window.bar {{
|
||||
background-color: {color1.rgba};
|
||||
color: {color1.rgba};
|
||||
opacity: 1;
|
||||
|
||||
}}
|
||||
|
||||
.playerbox {{
|
||||
background-color: {color2};
|
||||
color:rgb(73, 81, 121);
|
||||
border: 3px solid black;
|
||||
border-radius: 15px;
|
||||
}}
|
||||
|
||||
.launcher {{
|
||||
background: none;
|
||||
border: none;
|
||||
}}
|
||||
|
||||
box {{
|
||||
color: {color11};
|
||||
}}
|
||||
|
||||
|
||||
Window.SettingsWindow {{
|
||||
background-color: black;
|
||||
color: black;
|
||||
}}
|
||||
.settings_window {{
|
||||
background-color: {color1.rgba};
|
||||
border-radius: 15px;
|
||||
}}
|
||||
|
||||
.focused {{
|
||||
color: {color11};
|
||||
}}
|
||||
|
||||
.other {{
|
||||
color: {color3};
|
||||
}}
|
||||
|
||||
.media {{
|
||||
color: {color11};
|
||||
}}
|
||||
|
||||
.media:active {{
|
||||
background-color: {color11};
|
||||
}}
|
||||
|
||||
button {{
|
||||
min-width: 0;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0px;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
color: {color11};
|
||||
}}
|
||||
|
||||
button:active {{
|
||||
background-color: {color11};
|
||||
}}
|
||||
|
||||
button:hover {{
|
||||
border-bottom: 3px solid {color3};
|
||||
}}
|
||||
|
||||
label {{
|
||||
font-weight: bold;
|
||||
}}
|
||||
|
||||
.workspaces button.focused {{
|
||||
border-bottom: 3px solid {color11};
|
||||
}}
|
||||
|
||||
.client-title {{
|
||||
color: {color11};
|
||||
}}
|
||||
|
||||
.clock {{
|
||||
color: {color11};
|
||||
}}
|
||||
|
||||
.notification {{
|
||||
color: yellow;
|
||||
}}
|
||||
|
||||
levelbar block,
|
||||
highlight {{
|
||||
min-height: 4px;
|
||||
}}
|
||||
|
||||
/************************************/
|
||||
|
||||
window.notification-popups box.notifications {{
|
||||
padding: .5em;
|
||||
}}
|
||||
|
||||
.icon {{
|
||||
min-width: 68px;
|
||||
min-height: 68px;
|
||||
margin-right: 1em;
|
||||
}}
|
||||
|
||||
.icon image {{
|
||||
font-size: 58px;
|
||||
/* to center the icon */
|
||||
margin: 5px;
|
||||
color: yellow;
|
||||
}}
|
||||
|
||||
.icon box {{
|
||||
min-width: 68px;
|
||||
min-height: 68px;
|
||||
border-radius: 7px;
|
||||
}}
|
||||
|
||||
.notificationbutton {{
|
||||
color: {color3};
|
||||
}}
|
||||
|
||||
.notification {{
|
||||
min-width: 350px;
|
||||
border-radius: 11px;
|
||||
padding: 1em;
|
||||
margin: .5em;
|
||||
border: 1px solid blue;
|
||||
background-color: {color2};
|
||||
}}
|
||||
|
||||
.notification.critical {{
|
||||
border: 1px solid lightcoral;
|
||||
}}
|
||||
|
||||
.title {{
|
||||
color: aqua;
|
||||
font-size: 1.4em;
|
||||
}}
|
||||
|
||||
.body {{
|
||||
color: teal;
|
||||
}}
|
||||
|
||||
.actions .action-button {{
|
||||
margin: 0 .4em;
|
||||
margin-top: .8em;
|
||||
}}
|
||||
|
||||
.actions .action-button:first-child {{
|
||||
margin-left: 0;
|
||||
}}
|
||||
|
||||
.actions .action-button:last-child {{
|
||||
margin-right: 0;
|
||||
}}
|
||||
@@ -0,0 +1,23 @@
|
||||
--accent-color: {color7};
|
||||
--border-color: {color3};
|
||||
--background-1: rgba({color0.rgb}, calc({alpha} / 175));
|
||||
--background-2: transparent;
|
||||
--background-mentioned: {color3} !important;
|
||||
--background-mentioned-hover: {color3} !important;
|
||||
--background-modifier-hover: {color6} !important;
|
||||
--background-modifier-active: {color3} !important;
|
||||
--text-normal: {color1} !important;
|
||||
--text-positive: {color2} !important;
|
||||
--text-muted: {color3} !important;
|
||||
--text-link: {color4} !important;
|
||||
--button-background: {color5} !important;
|
||||
--button-background-hover: {color0} !important;
|
||||
--button-background-active: {color0} !important;
|
||||
--button-accent-hover: {color0} !important;
|
||||
--button-accent-active: {color5} !important;
|
||||
--button-destructive: {color5} !important;
|
||||
--button-destructive-hover: {color4} !important;
|
||||
--button-destructive-active: {color4} !important;
|
||||
--settings-icon-color: {color0} !important;
|
||||
--tab-selected: {color2} !important;
|
||||
--switch: {color1} !important;
|
||||
@@ -0,0 +1,18 @@
|
||||
$foregroundCol = 0xff{foreground.strip}
|
||||
$backgroundCol = 0xff{background.strip}
|
||||
$color0 = 0xff{color0.strip}
|
||||
$color1 = 0xff{color1.strip}
|
||||
$color2 = 0xff{color2.strip}
|
||||
$color3 = 0xff{color3.strip}
|
||||
$color4 = 0xff{color4.strip}
|
||||
$color5 = 0xff{color5.strip}
|
||||
$color6 = 0xff{color6.strip}
|
||||
$color7 = 0xff{color7.strip}
|
||||
$color8 = 0xff{color8.strip}
|
||||
$color9 = 0xff{color9.strip}
|
||||
$color10 = 0xff{color10.strip}
|
||||
$color11 = 0xff{color11.strip}
|
||||
$color12 = 0xff{color12.strip}
|
||||
$color13 = 0xff{color13.strip}
|
||||
$color14 = 0xff{color14.strip}
|
||||
$color15 = 0xff{color15.strip}
|
||||
6
home-manager/nix-on-droid/dotfiles/wayvnc/config
Normal file
@@ -0,0 +1,6 @@
|
||||
use_relative_paths=true
|
||||
address=0.0.0.0
|
||||
enable_auth=false
|
||||
username=nathan
|
||||
password=//falconAdjacent42
|
||||
rsa_private_key_file=rsa_key.pem
|
||||
39
home-manager/nix-on-droid/dotfiles/wayvnc/rsa_key.pem
Normal file
@@ -0,0 +1,39 @@
|
||||
-----BEGIN RSA PRIVATE KEY-----
|
||||
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
|
||||
-----END RSA PRIVATE KEY-----
|
||||
@@ -0,0 +1 @@
|
||||
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCyRlNZ+ePi5QOw+rnV4BeTFd64d7FPYfhDewUuCc/4HXO/2Z5iBB4Mry1I3Tz0q6TPqNgD9Z3xTrqKrRMocayCP8Ci0vTQpqf4nvmG6+c75psaOQii+Xv7P4T3CeqWbFsULyvnEPmdpBvAv5MqMabqNwjok+nf4YjYwycLphhQ7xmuezorqZv9ME2Ny0efcMZEv1AXSf8siU6FW/5WQGIyO9qdrbOjth0Q+YQ0bwc8hHq1FAj+AjxQTGWAvh3o7tHElMCiAgSetnGwcAA6ebMNVcinedK6Dimx6IdsBz05U2ifmI1nehEr9JBZ2RVL/gdn9f4xkuHbrv7as5kQDzyJzDc4h523TiXfeXxkBSUnj84qk96yi1RG92Rhg8IftRyD1MEtEnF6Ri4nEZXmKHiKZYVGQbOgYoETkPuJimmMNbBVSZyTdI8xpcgDGM13FKBiHzhiy+6G3acGgjez4PjKgGp9fvp87Po6xAcg67Fjc8oznsSDDi74jvN/PbuWC3U= root@homebox
|
||||