use licensure to ensure that license headers are present
This commit is contained in:
parent
4f0d743e7f
commit
5c559fa6aa
15 changed files with 328 additions and 144 deletions
150
.licensure.yml
Normal file
150
.licensure.yml
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
|
||||
# Regexes which if matched by a file path will always be excluded from
|
||||
# getting a license header
|
||||
excludes:
|
||||
- \.gitignore
|
||||
- .*lock
|
||||
- \.git/.*
|
||||
- \.licensure\.yml
|
||||
- README.*
|
||||
- LICENSE.*
|
||||
- .*\.(md|rst|txt)
|
||||
- samples/.*
|
||||
# Definition of the licenses used on this project and to what files
|
||||
# they should apply.
|
||||
#
|
||||
# No default license configuration is provided. This section must be
|
||||
# configured by the user.
|
||||
#
|
||||
# Make sure to delete the [] below when you add your configs.
|
||||
licenses:
|
||||
- files: any
|
||||
ident: GPL-3.0-or-later
|
||||
start_year: 2024
|
||||
authors:
|
||||
- name: Dustin Thomas
|
||||
email: stdio@cptlobster.dev
|
||||
auto_template: true
|
||||
# Either a regex or the string "any" to determine to what files this
|
||||
# license should apply. It is common for projects to have files
|
||||
# under multiple licenses or with multiple copyright holders. This
|
||||
# provides the ability to automatically license files correctly
|
||||
# based on their file paths.
|
||||
#
|
||||
# If "any" is provided all files will match this license.
|
||||
# - files: any
|
||||
#
|
||||
# The license identifier, a list of common identifiers can be
|
||||
# found at: https://spdx.org/licenses/ but existence of the ident
|
||||
# in this list it is not enforced unless auto_template is set to
|
||||
# true.
|
||||
# ident: MIT
|
||||
#
|
||||
# A list of authors who hold copyright over these files
|
||||
# authors:
|
||||
# Provide either your full name or company name for copyright purposes
|
||||
# - name: Your Name Here
|
||||
# Optionally provide email for copyright purposes
|
||||
# email: you@yourdomain.com
|
||||
#
|
||||
# The template that will be rendered to generate the header before
|
||||
# comment characters are applied. Available variables are:
|
||||
# - [year]: substituted with the current year.
|
||||
# - [name of author]: Substituted with name of the author and email
|
||||
# if provided. If email is provided the output appears as Full
|
||||
# Name <email@example.com>. If multiple authors are provided the
|
||||
# list is concatenated together with commas.
|
||||
# template: |
|
||||
# Copyright [year] [name of author]. All rights reserved. Use of
|
||||
# this source code is governed by the [ident] license that can be
|
||||
# found in the LICENSE file.
|
||||
#
|
||||
# If auto_template is true then template is ignored and the SPDX
|
||||
# API will be queried with the ident value to automatically
|
||||
# determine the license header template. auto_template works best
|
||||
# with licenses that have a standardLicenseHeader field defined in
|
||||
# their license info JSON, if it is not then we will use the full
|
||||
# licenseText to generate the header which works fine for short
|
||||
# licenses like MIT but can be quite lengthy for other licenses
|
||||
# like BSD-4-Clause. The above default template is valid for most
|
||||
# licenses and is recommended for MIT, and BSD licenses. Common
|
||||
# licenses that work well with the auto_template feature are GPL
|
||||
# variants, and the Apache 2.0 license.
|
||||
#
|
||||
# Important Note: this means the ident must be a valid SPDX identifier
|
||||
# auto_template: true
|
||||
#
|
||||
# If true try to detect the text wrapping of the template, and unwrap it
|
||||
# unwrap_text: false
|
||||
|
||||
# Define type of comment characters to apply based on file extensions.
|
||||
comments:
|
||||
# The extensions (or singular extension) field defines which file
|
||||
# extensions to apply the commenter to.
|
||||
- extensions:
|
||||
- js
|
||||
- rs
|
||||
- go
|
||||
# The commenter field defines the kind of commenter to
|
||||
# generate. There are two types of commenters: line and block.
|
||||
#
|
||||
# This demonstrates a line commenter configuration. A line
|
||||
# commenter type will apply the comment_char to the beginning of
|
||||
# each line in the license header. It will then apply a number of
|
||||
# empty newlines to the end of the header equal to trailing_lines.
|
||||
#
|
||||
# If trailing_lines is omitted it is assumed to be 0.
|
||||
commenter:
|
||||
type: line
|
||||
comment_char: "//"
|
||||
trailing_lines: 0
|
||||
columns: 80
|
||||
- extensions:
|
||||
- css
|
||||
- cpp
|
||||
- c
|
||||
# This demonstrates a block commenter configuration. A block
|
||||
# commenter type will add start_block_char as the first character
|
||||
# in the license header and add end_block_char as the last character
|
||||
# in the license header. If per_line_char is provided each line of
|
||||
# the header between the block start and end characters will be
|
||||
# line commented with the per_line_char
|
||||
#
|
||||
# trailing_lines works the same for both block and line commenter
|
||||
# types
|
||||
commenter:
|
||||
type: block
|
||||
start_block_char: "/*\n"
|
||||
end_block_char: "*/"
|
||||
per_line_char: "*"
|
||||
trailing_lines: 0
|
||||
columns: 80
|
||||
# In this case extension is singular and a single string extension is provided.
|
||||
- extension: html
|
||||
commenter:
|
||||
type: block
|
||||
start_block_char: "<!--\n"
|
||||
end_block_char: "-->"
|
||||
columns: 80
|
||||
- extensions:
|
||||
- el
|
||||
- lisp
|
||||
commenter:
|
||||
type: line
|
||||
comment_char: ";;;"
|
||||
trailing_lines: 0
|
||||
columns: 80
|
||||
# The extension string "any" is special and so will match any file
|
||||
# extensions. Commenter configurations are always checked in the
|
||||
# order they are defined, so if any is used it should be the last
|
||||
# commenter configuration or else it will override all others.
|
||||
#
|
||||
# In this configuration if we can't match the file extension we fall
|
||||
# back to the popular '#' line comment used in most scripting
|
||||
# languages.
|
||||
- extension: any
|
||||
commenter:
|
||||
type: line
|
||||
comment_char: '#'
|
||||
trailing_lines: 0
|
||||
columns: 80
|
||||
24
Cargo.toml
24
Cargo.toml
|
|
@ -1,17 +1,19 @@
|
|||
# Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
# <one line to give the program's name and a brief idea of what it does.>
|
||||
# Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
# This program is free software: you can redistribute it and/or modify it under
|
||||
# the terms of the GNU General Public License as published by the Free Software
|
||||
# Foundation, either version 3 of the License, or (at your option) any later
|
||||
# version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
# You should have received a copy of the GNU General Public License along with
|
||||
# this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
[package]
|
||||
name = "swayconf"
|
||||
version = "0.1.0"
|
||||
|
|
|
|||
23
src/main.rs
23
src/main.rs
|
|
@ -1,17 +1,18 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
/// Struct-based representation for Sway config files.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use std::collections::HashMap;
|
||||
use std::fmt::{Display, Formatter, Result as FmtResult};
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::fmt::{Display as FmtDisplay, Formatter, Result as FmtResult};
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
|
||||
/// Runtime command enumeration.
|
||||
///
|
||||
/// This module should ONLY contain the enum for runtime commands, all options should be handled in
|
||||
|
|
@ -27,4 +29,7 @@ pub mod options;
|
|||
/// This has a rigid structure for config-only commands, so that [serde] can assemble/disassemble
|
||||
/// TOML in a way that is even moderately comprehensible.
|
||||
pub mod config;
|
||||
mod criteria;
|
||||
/// Criteria generation.
|
||||
mod criteria;
|
||||
/// Autogen complex structures.
|
||||
mod autogen;
|
||||
|
|
@ -1,17 +1,18 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use std::fmt::{Display, Formatter, Result as FmtResult};
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
|
|
|||
|
|
@ -1,3 +1,19 @@
|
|||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::fmt::{Display, Formatter, Result as FmtResult};
|
||||
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use strum::Display;
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use strum::Display;
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use strum::Display;
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
/// All structs for bindsym/bindcode commands
|
||||
pub mod bind;
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use strum::Display;
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use strum::Display;
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
// Copyright (C) 2024 Dustin Thomas <io@cptlobster.dev>
|
||||
// <one line to give the program's name and a brief idea of what it does.>
|
||||
// Copyright (C) 2024, 2025 Dustin Thomas <stdio@cptlobster.dev>
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is free software: you can redistribute it and/or modify it under
|
||||
// the terms of the GNU General Public License as published by the Free Software
|
||||
// Foundation, either version 3 of the License, or (at your option) any later
|
||||
// version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License along with
|
||||
// this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use strum::Display;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue