Compare commits
No commits in common. "393abd75a80002443ca45014bcd4fe3d7067cc01" and "e62feda86465e32b4aa6b9912cf8ced8ab5a2fb7" have entirely different histories.
393abd75a8
...
e62feda864
6 changed files with 3 additions and 50 deletions
|
@ -19,7 +19,6 @@ in
|
||||||
../modules/startpage
|
../modules/startpage
|
||||||
../modules/terminal
|
../modules/terminal
|
||||||
../modules/todo-txt
|
../modules/todo-txt
|
||||||
../modules/xborders
|
|
||||||
];
|
];
|
||||||
|
|
||||||
home.file."./.background-image".source = theme.wallpaper;
|
home.file."./.background-image".source = theme.wallpaper;
|
||||||
|
|
|
@ -60,7 +60,7 @@ in with theme.colors; {
|
||||||
};
|
};
|
||||||
startup = [
|
startup = [
|
||||||
{
|
{
|
||||||
command = "(systemctl --user restart polybar &) && (nm-applet &) && (nextcloud &) && (xborders --border-rgb ${builtins.substring 1 6 primary}ff --border-radius 12 --border-width 2 --smart-hide-border)";
|
command = "(systemctl --user restart polybar &) && (nm-applet &) && (nextcloud &)";
|
||||||
always = true;
|
always = true;
|
||||||
notification = false;
|
notification = false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, ... }:
|
{ ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
services.picom = {
|
services.picom = {
|
||||||
|
|
|
@ -12,7 +12,7 @@ in
|
||||||
name = "FiraCode Nerd Font Mono";
|
name = "FiraCode Nerd Font Mono";
|
||||||
size = 12;
|
size = 12;
|
||||||
};
|
};
|
||||||
extraConfig = "enable_audio_bell 0\nconfirm_os_window_close 0\nbackground_opacity 0.7\nwindow_padding_width 2";
|
extraConfig = "enable_audio_bell 0\nconfirm_os_window_close 0\nbackground_opacity 0.7";
|
||||||
};
|
};
|
||||||
programs.bash.shellAliases = {
|
programs.bash.shellAliases = {
|
||||||
# Fix for ""'xterm-kitty': unknown terminal type" error in remote sessions
|
# Fix for ""'xterm-kitty': unknown terminal type" error in remote sessions
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
(pkgs.callPackage ./xborders.nix {})
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,39 +0,0 @@
|
||||||
{ lib, pkgs, ... }:
|
|
||||||
|
|
||||||
with pkgs; callPackage python3Packages.buildPythonPackage rec {
|
|
||||||
pname = "xborders";
|
|
||||||
version = "3.4"; # in version.txt
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "deter0";
|
|
||||||
repo = "xborder";
|
|
||||||
rev = "d840ed649e92b7ad399cdb1a30aeca7d09f2c08f";
|
|
||||||
sha256 = "sha256-Q2WWXekUL/OOr/OBqJOZbAHaWURbP+coBVp206uPSNY=";
|
|
||||||
};
|
|
||||||
buildInputs = [ libwnck gtk3 libnotify ];
|
|
||||||
nativeBuildInputs = [ wrapGAppsHook gobject-introspection ];
|
|
||||||
propagatedBuildInputs = with python3Packages; [ pycairo requests pygobject3 ];
|
|
||||||
preBuild = ''
|
|
||||||
sed '52,58!d' ${pname}
|
|
||||||
sed -i '51 a\ return ${version}' ${pname}
|
|
||||||
cat >setup.py <<'EOF'
|
|
||||||
from setuptools import setup
|
|
||||||
setup(
|
|
||||||
name='${pname}',
|
|
||||||
version='${version}',
|
|
||||||
author='deter0',
|
|
||||||
description='${meta.description}',
|
|
||||||
install_requires=['pycairo', 'requests', 'PyGObject'],
|
|
||||||
scripts=[
|
|
||||||
'${pname}',
|
|
||||||
],
|
|
||||||
)
|
|
||||||
EOF
|
|
||||||
'';
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Active window border replacement for window managers.";
|
|
||||||
homepage = "https://github.com/deter0/xborder";
|
|
||||||
license = licenses.unlicense;
|
|
||||||
maitainers = with maintainers; [ elnudev ];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue